mirror of
https://github.com/libp2p/go-reuseport.git
synced 2025-09-26 19:01:11 +08:00
12 lines
138 B
Go
12 lines
138 B
Go
//go:build wasm
|
|
|
|
package reuseport
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
func Control(network, address string, c syscall.RawConn) error {
|
|
return nil
|
|
}
|