mirror of
https://github.com/gospider007/requests.git
synced 2025-12-24 13:57:52 +08:00
12 lines
162 B
Go
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) {})
|
|
}
|