Commit f483ac36 authored by Mikio Hara's avatar Mikio Hara

ipv6: add missing BUGS section

Change-Id: I42e83ca311b499459c4d6fa75984be3e86da6a22
Reviewed-on: https://go-review.googlesource.com/34433Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
parent 0cc88848
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style // Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
// +build darwin dragonfly freebsd linux netbsd openbsd windows solaris // +build darwin dragonfly freebsd linux netbsd openbsd solaris windows
package ipv6 package ipv6
......
...@@ -239,3 +239,5 @@ ...@@ -239,3 +239,5 @@
// In the fallback case, ExcludeSourceSpecificGroup and // In the fallback case, ExcludeSourceSpecificGroup and
// IncludeSourceSpecificGroup may return an error. // IncludeSourceSpecificGroup may return an error.
package ipv6 // import "golang.org/x/net/ipv6" package ipv6 // import "golang.org/x/net/ipv6"
// BUG(mikio): This package is not implemented on NaCl and Plan 9.
...@@ -12,6 +12,11 @@ import ( ...@@ -12,6 +12,11 @@ import (
"golang.org/x/net/internal/netreflect" "golang.org/x/net/internal/netreflect"
) )
// BUG(mikio): On Windows, the JoinSourceSpecificGroup,
// LeaveSourceSpecificGroup, ExcludeSourceSpecificGroup and
// IncludeSourceSpecificGroup methods of PacketConn are not
// implemented.
// A Conn represents a network endpoint that uses IPv6 transport. // A Conn represents a network endpoint that uses IPv6 transport.
// It allows to set basic IP-level socket options such as traffic // It allows to set basic IP-level socket options such as traffic
// class and hop limit. // class and hop limit.
......
...@@ -6,6 +6,9 @@ package ipv6 ...@@ -6,6 +6,9 @@ package ipv6
import "net" import "net"
// BUG(mikio): On Windows, the ControlMessage for ReadFrom and WriteTo
// methods of PacketConn is not implemented.
// A payloadHandler represents the IPv6 datagram payload handler. // A payloadHandler represents the IPv6 datagram payload handler.
type payloadHandler struct { type payloadHandler struct {
net.PacketConn net.PacketConn
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment