mirror of
https://github.com/PeernetOfficial/core.git
synced 2026-07-17 02:47:51 +01:00
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
|
|
}
|