diff options
| author | Mikio Hara <mikioh.mikioh@gmail.com> | 2016-08-22 05:52:15 +0900 |
|---|---|---|
| committer | Mikio Hara <mikioh.mikioh@gmail.com> | 2016-08-23 14:19:39 +0000 |
| commit | a7ed9ff754dd66a75070a376382ca0fa520deefd (patch) | |
| tree | a927d6922683e9c3d60aa72566ef33a8ea8c716a /src/net/interface.go | |
| parent | 4333d3823dd78f755f90e5f63b7de180d4a90025 (diff) | |
| download | go-a7ed9ff754dd66a75070a376382ca0fa520deefd.tar.xz | |
net: document unimplemented methods and functions
Fixes #16802.
Change-Id: I41be7bb4e21e3beaa2136ee69771b0f455b2a7c6
Reviewed-on: https://go-review.googlesource.com/27417
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src/net/interface.go')
| -rw-r--r-- | src/net/interface.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/net/interface.go b/src/net/interface.go index 4947b52faf..295ab2dc92 100644 --- a/src/net/interface.go +++ b/src/net/interface.go @@ -10,6 +10,12 @@ import ( "time" ) +// BUG(mikio): On NaCl, Plan9 and Solaris, methods and functions +// related to Interface are not implemented. + +// BUG(mikio): On DragonFly BSD, NetBSD and OpenBSD, the +// MulticastAddrs method of Interface is not implemented. + var ( errInvalidInterface = errors.New("invalid network interface") errInvalidInterfaceIndex = errors.New("invalid network interface index") |
