Fix build on Plan 9

All tests are passing.
This commit is contained in:
Fazlul Shahriar
2020-07-08 23:03:12 -04:00
parent 5f73bcc6dd
commit f0ab767cd7
2 changed files with 10 additions and 1 deletions

9
control_plan9.go Normal file
View File

@@ -0,0 +1,9 @@
package reuseport
import (
"syscall"
)
func Control(network, address string, c syscall.RawConn) error {
return nil
}

View File

@@ -1,4 +1,4 @@
// +build !windows,!wasm
// +build !plan9,!windows,!wasm
package reuseport