Files
libp2p/control_wasm.go
Jakub Sztandera 642fc42745 fix: add wasm build tag to wasm module
It is not strictly needed but in cases of builds with Go older than 1.11
it significantly improves error message.
2019-02-18 22:46:25 +01:00

12 lines
137 B
Go

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