13 lines
153 B
Go
Raw Normal View History

2022-04-01 12:16:46 -04:00
//go:build wasm
2019-06-09 09:24:20 +02:00
// +build wasm
package reuseport
import (
"syscall"
)
func Control(network, address string, c syscall.RawConn) error {
return nil
}