2023-06-30 14:23:08 -04:00

12 lines
138 B
Go

//go:build wasm
package reuseport
import (
"syscall"
)
func Control(network, address string, c syscall.RawConn) error {
return nil
}