src/net/file.go | 2 +- src/net/interface.go | 2 +- src/net/iprawsock.go | 4 ++-- src/net/rawconn.go | 4 ++-- src/net/tcpsock.go | 4 ++-- src/net/udpsock.go | 3 +++ src/net/unixsock.go | 3 +++ diff --git a/src/net/file.go b/src/net/file.go index 07099851cbfbd04c524722b693e16406c577f3dc..81a44e1f3f3d8ecaf81866428e7bd3ea0bdd6738 100644 --- a/src/net/file.go +++ b/src/net/file.go @@ -6,7 +6,7 @@ package net import "os" -// BUG(mikio): On NaCl and Windows, the FileConn, FileListener and +// BUG(mikio): On JS, NaCl and Windows, the FileConn, FileListener and // FilePacketConn functions are not implemented. type fileAddr string diff --git a/src/net/interface.go b/src/net/interface.go index 4036a7f4750dc0e33b16f4eb18349388af5f8401..375a4568e3f289438887af4139a7fe560b021c0a 100644 --- a/src/net/interface.go +++ b/src/net/interface.go @@ -10,7 +10,7 @@ "sync" "time" ) -// BUG(mikio): On NaCl, methods and functions related to +// BUG(mikio): On JS and NaCl, methods and functions related to // Interface are not implemented. // BUG(mikio): On DragonFly BSD, NetBSD, OpenBSD, Plan 9 and Solaris, diff --git a/src/net/iprawsock.go b/src/net/iprawsock.go index 95bab50e4ec97164d21166c30af2113f21188c40..8a9c26559bde741b71f95a20abe3f4a73461f4f0 100644 --- a/src/net/iprawsock.go +++ b/src/net/iprawsock.go @@ -21,8 +21,8 @@ // The Go 1 compatibility guidelines make it impossible for us to // change the behavior of these methods; use Read or ReadMsgIP // instead. -// BUG(mikio): On NaCl and Plan 9, the ReadMsgIP and -// WriteMsgIP methods of IPConn are not implemented. +// BUG(mikio): On JS, NaCl and Plan 9, methods and functions related +// to IPConn are not implemented. // BUG(mikio): On Windows, the File method of IPConn is not // implemented. diff --git a/src/net/rawconn.go b/src/net/rawconn.go index e6528167396742f190b3ac70b4857b397235a6d7..c40ea4a2e1248996acd8111dae59950c3a5329a5 100644 --- a/src/net/rawconn.go +++ b/src/net/rawconn.go @@ -15,8 +15,8 @@ // wait for the connection to become writeable, and does not respect // deadlines. If the user-provided callback returns false, the Write // method will fail immediately. -// BUG(mikio): On NaCl and Plan 9, the Control, Read and Write methods -// of syscall.RawConn are not implemented. +// BUG(mikio): On JS, NaCl and Plan 9, the Control, Read and Write +// methods of syscall.RawConn are not implemented. type rawConn struct { fd *netFD diff --git a/src/net/tcpsock.go b/src/net/tcpsock.go index 6e628f667f502992846122143037f54efb378637..db5d1f8482efe9e54dff3e65ae142d6350a46ec4 100644 --- a/src/net/tcpsock.go +++ b/src/net/tcpsock.go @@ -12,8 +12,8 @@ "syscall" "time" ) -// BUG(mikio): On Windows, the File method of TCPListener is not -// implemented. +// BUG(mikio): On JS, NaCl and Windows, the File method of TCPConn and +// TCPListener is not implemented. // TCPAddr represents the address of a TCP end point. type TCPAddr struct { diff --git a/src/net/udpsock.go b/src/net/udpsock.go index 937b9270bdd29beb770cce641c6504e902c31204..b234ed89abf24d75315385e57da49f0fb77abd89 100644 --- a/src/net/udpsock.go +++ b/src/net/udpsock.go @@ -18,6 +18,9 @@ // BUG(mikio): On NaCl, the ListenMulticastUDP function is not // implemented. +// BUG(mikio): On JS, methods and functions related to UDPConn are not +// implemented. + // UDPAddr represents the address of a UDP end point. type UDPAddr struct { IP IP diff --git a/src/net/unixsock.go b/src/net/unixsock.go index 06beaecc28b630d391e19e08d566991cab316458..3ae62f6a8b84afadb7a296f66f364634675fca56 100644 --- a/src/net/unixsock.go +++ b/src/net/unixsock.go @@ -12,6 +12,9 @@ "syscall" "time" ) +// BUG(mikio): On JS, NaCl, Plan 9 and Windows, methods and functions +// related to UnixConn and UnixListener are not implemented. + // UnixAddr represents the address of a Unix domain socket end point. type UnixAddr struct { Name string