Skip to content

Commit 5a08865

Browse files
committed
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>
1 parent d166a0b commit 5a08865

File tree

3 files changed

+1
-7
lines changed

3 files changed

+1
-7
lines changed

src/net/iprawsock.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,6 @@ import (
2424
// BUG(mikio): On JS and Plan 9, methods and functions related
2525
// to IPConn are not implemented.
2626

27-
// BUG(mikio): On Windows, the File method of IPConn is not
28-
// implemented.
29-
3027
// IPAddr represents the address of an IP end point.
3128
type IPAddr struct {
3229
IP IP

src/net/tcpsock.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"time"
1515
)
1616

17-
// BUG(mikio): On JS and Windows, the File method of TCPConn and
17+
// BUG(mikio): On JS, the File method of TCPConn and
1818
// TCPListener is not implemented.
1919

2020
// TCPAddr represents the address of a TCP end point.

src/net/udpsock.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ import (
1414
// BUG(mikio): On Plan 9, the ReadMsgUDP and
1515
// WriteMsgUDP methods of UDPConn are not implemented.
1616

17-
// BUG(mikio): On Windows, the File method of UDPConn is not
18-
// implemented.
19-
2017
// BUG(mikio): On JS, methods and functions related to UDPConn are not
2118
// implemented.
2219

0 commit comments

Comments
 (0)