aboutsummaryrefslogtreecommitdiff
path: root/src/net/iprawsock_posix.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/iprawsock_posix.go')
-rw-r--r--src/net/iprawsock_posix.go12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/net/iprawsock_posix.go b/src/net/iprawsock_posix.go
index d5e229fb9c..8f4b702e48 100644
--- a/src/net/iprawsock_posix.go
+++ b/src/net/iprawsock_posix.go
@@ -11,18 +11,6 @@ import (
"syscall"
)
-// BUG(mikio): On every POSIX platform, reads from the "ip4" network
-// using the ReadFrom or ReadFromIP method might not return a complete
-// IPv4 packet, including its header, even if there is space
-// available. This can occur even in cases where Read or ReadMsgIP
-// could return a complete packet. For this reason, it is recommended
-// that you do not uses these methods if it is important to receive a
-// full packet.
-//
-// The Go 1 compatibility guidelines make it impossible for us to
-// change the behavior of these methods; use Read or ReadMsgIP
-// instead.
-
func sockaddrToIP(sa syscall.Sockaddr) Addr {
switch sa := sa.(type) {
case *syscall.SockaddrInet4: