We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba9e1dd commit 94b7d51Copy full SHA for 94b7d51
src/net/iprawsock.go
@@ -25,6 +25,12 @@ import (
25
// BUG(mikio): On JS and Plan 9, methods and functions related
26
// to IPConn are not implemented.
27
28
+// BUG: On Windows, raw IP sockets are restricted by the operating system.
29
+// Sending TCP data, sending UDP data with invalid source addresses,
30
+// and calling bind with TCP protocol don't work.
31
+//
32
+// See Winsock reference for details.
33
+
34
func ipAddrFromAddr(addr netip.Addr) *IPAddr {
35
return &IPAddr{
36
IP: addr.AsSlice(),
0 commit comments