Files
requests/socks_js.go
gospider 48f7cf8c15 sync
2025-08-19 17:56:05 +08:00

12 lines
162 B
Go

//go:build js
package requests
import (
"syscall"
)
func Control(network, address string, c syscall.RawConn) error {
return c.Control(func(fd uintptr) {})
}