From: Cherry Mui Date: Mon, 9 Jun 2025 20:59:00 +0000 (-0400) Subject: net: remove some BUG entries X-Git-Tag: go1.25rc2~2^2~61 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=5a08865de339b5eeb8ad1c52635ea8ba505aafec;p=gostls13.git 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 LUCI-TryBot-Result: Go LUCI Reviewed-by: Carlos Amedee --- 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.