]> Cypherpunks repositories - gostls13.git/commitdiff
net: remove some BUG entries
authorCherry Mui <cherryyz@google.com>
Mon, 9 Jun 2025 20:59:00 +0000 (16:59 -0400)
committerCherry Mui <cherryyz@google.com>
Thu, 12 Jun 2025 16:28:42 +0000 (09:28 -0700)
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>
src/net/iprawsock.go
src/net/tcpsock.go
src/net/udpsock.go

index 4c06b1b5aca4461840a3b076f00a1faf05ba83e2..76dded9ca16e120e6a1a97a2f0087b8f62d15011 100644 (file)
@@ -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
index 1b11a03f65ca4ffb7c759eb1c72d68a7400acdc5..9d215db1b2eec35e959adda4370dd659c3bdfe8a 100644 (file)
@@ -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.
index 56aabffa3180e4b9aa55d9f1c56b6d5e04ef9c4e..35da018c307afbf2adaa161187ea42450fde91ec 100644 (file)
@@ -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.