Commit 15779d58 authored by Mikio Hara's avatar Mikio Hara Committed by Brad Fitzpatrick

net: update docs for unimplemented methods and functions

Change-Id: I54e651a952afa8928cc0204ba37092d3b2347266
Reviewed-on: https://go-review.googlesource.com/127737
Run-TryBot: Mikio Hara <mikioh.mikioh@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
parent 4cc09cd5
...@@ -6,7 +6,7 @@ package net ...@@ -6,7 +6,7 @@ package net
import "os" 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. // FilePacketConn functions are not implemented.
type fileAddr string type fileAddr string
......
...@@ -10,7 +10,7 @@ import ( ...@@ -10,7 +10,7 @@ import (
"time" "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. // Interface are not implemented.
// BUG(mikio): On DragonFly BSD, NetBSD, OpenBSD, Plan 9 and Solaris, // BUG(mikio): On DragonFly BSD, NetBSD, OpenBSD, Plan 9 and Solaris,
......
...@@ -21,8 +21,8 @@ import ( ...@@ -21,8 +21,8 @@ import (
// change the behavior of these methods; use Read or ReadMsgIP // change the behavior of these methods; use Read or ReadMsgIP
// instead. // instead.
// BUG(mikio): On NaCl and Plan 9, the ReadMsgIP and // BUG(mikio): On JS, NaCl and Plan 9, methods and functions related
// WriteMsgIP methods of IPConn are not implemented. // to IPConn are not implemented.
// BUG(mikio): On Windows, the File method of IPConn is not // BUG(mikio): On Windows, the File method of IPConn is not
// implemented. // implemented.
......
...@@ -15,8 +15,8 @@ import ( ...@@ -15,8 +15,8 @@ import (
// deadlines. If the user-provided callback returns false, the Write // deadlines. If the user-provided callback returns false, the Write
// method will fail immediately. // method will fail immediately.
// BUG(mikio): On NaCl and Plan 9, the Control, Read and Write methods // BUG(mikio): On JS, NaCl and Plan 9, the Control, Read and Write
// of syscall.RawConn are not implemented. // methods of syscall.RawConn are not implemented.
type rawConn struct { type rawConn struct {
fd *netFD fd *netFD
......
...@@ -12,8 +12,8 @@ import ( ...@@ -12,8 +12,8 @@ import (
"time" "time"
) )
// BUG(mikio): On Windows, the File method of TCPListener is not // BUG(mikio): On JS, NaCl and Windows, the File method of TCPConn and
// implemented. // TCPListener is not implemented.
// TCPAddr represents the address of a TCP end point. // TCPAddr represents the address of a TCP end point.
type TCPAddr struct { type TCPAddr struct {
......
...@@ -18,6 +18,9 @@ import ( ...@@ -18,6 +18,9 @@ import (
// BUG(mikio): On NaCl, the ListenMulticastUDP function is not // BUG(mikio): On NaCl, the ListenMulticastUDP function is not
// implemented. // implemented.
// BUG(mikio): On JS, methods and functions related to UDPConn are not
// implemented.
// UDPAddr represents the address of a UDP end point. // UDPAddr represents the address of a UDP end point.
type UDPAddr struct { type UDPAddr struct {
IP IP IP IP
......
...@@ -12,6 +12,9 @@ import ( ...@@ -12,6 +12,9 @@ import (
"time" "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. // UnixAddr represents the address of a Unix domain socket end point.
type UnixAddr struct { type UnixAddr struct {
Name string Name string
......
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