mirror of
https://github.com/libp2p/go-reuseport.git
synced 2025-10-05 14:56:51 +08:00
13 lines
153 B
Go
13 lines
153 B
Go
//go:build wasm
|
|
// +build wasm
|
|
|
|
package reuseport
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
func Control(network, address string, c syscall.RawConn) error {
|
|
return nil
|
|
}
|