mirror of
https://github.com/libp2p/go-reuseport.git
synced 2025-10-05 06:46:51 +08:00

It is not strictly needed but in cases of builds with Go older than 1.11 it significantly improves error message.
12 lines
137 B
Go
12 lines
137 B
Go
// +build wasm
|
|
|
|
package reuseport
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
func Control(network, address string, c syscall.RawConn) error {
|
|
return nil
|
|
}
|