imporatnt fix 2

This commit is contained in:
Quentin McGaw
2026-06-05 04:46:20 +00:00
parent a9a36644ec
commit 820689cc23
3 changed files with 193 additions and 33 deletions
+27
View File
@@ -0,0 +1,27 @@
//go:build windows
package restrictednet
import (
"net/netip"
)
func closeFD(fd int) {
panic("not implemented")
}
func newTCPSockStream(family int) (fd int, err error) {
panic("not implemented")
}
func bindFD(fd int, address netip.AddrPort) error {
panic("not implemented")
}
func connectFD(fd int, destination netip.AddrPort) error {
panic("not implemented")
}
func fdToSourceAddr(fd int) (sourceAddrPort netip.AddrPort, err error) {
panic("not implemented")
}