aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCherry Mui <cherryyz@google.com>2025-06-09 16:59:00 -0400
committerCherry Mui <cherryyz@google.com>2025-06-12 09:28:42 -0700
commit5a08865de339b5eeb8ad1c52635ea8ba505aafec (patch)
treeba65cb4242e6bd5b2fc09b057cb76bd2acfe511c /src
parentd166a0b03e88e3ffe17a5bee4e5405b5091573c6 (diff)
downloadgo-5a08865de339b5eeb8ad1c52635ea8ba505aafec.tar.xz
net: remove some BUG entries
A few methods that were not implemented on Windows are implemented in CL 668195. Change-Id: I35423792a5af00f29fcd24e56a6dfcf013669371 Reviewed-on: https://go-review.googlesource.com/c/go/+/680180 Reviewed-by: Quim Muntal <quimmuntal@gmail.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Carlos Amedee <carlos@golang.org>
Diffstat (limited to 'src')
-rw-r--r--src/net/iprawsock.go3
-rw-r--r--src/net/tcpsock.go2
-rw-r--r--src/net/udpsock.go3
3 files changed, 1 insertions, 7 deletions
diff --git a/src/net/iprawsock.go b/src/net/iprawsock.go
index 4c06b1b5ac..76dded9ca1 100644
--- a/src/net/iprawsock.go
+++ b/src/net/iprawsock.go
@@ -24,9 +24,6 @@ import (
// BUG(mikio): On JS and Plan 9, methods and functions related
// to IPConn are not implemented.
-// BUG(mikio): On Windows, the File method of IPConn is not
-// implemented.
-
// IPAddr represents the address of an IP end point.
type IPAddr struct {
IP IP
diff --git a/src/net/tcpsock.go b/src/net/tcpsock.go
index 1b11a03f65..9d215db1b2 100644
--- a/src/net/tcpsock.go
+++ b/src/net/tcpsock.go
@@ -14,7 +14,7 @@ import (
"time"
)
-// BUG(mikio): On JS and Windows, the File method of TCPConn and
+// BUG(mikio): On JS, the File method of TCPConn and
// TCPListener is not implemented.
// TCPAddr represents the address of a TCP end point.
diff --git a/src/net/udpsock.go b/src/net/udpsock.go
index 56aabffa31..35da018c30 100644
--- a/src/net/udpsock.go
+++ b/src/net/udpsock.go
@@ -14,9 +14,6 @@ import (
// BUG(mikio): On Plan 9, the ReadMsgUDP and
// WriteMsgUDP methods of UDPConn are not implemented.
-// BUG(mikio): On Windows, the File method of UDPConn is not
-// implemented.
-
// BUG(mikio): On JS, methods and functions related to UDPConn are not
// implemented.