Skip to content

Commit

Permalink
Merge pull request #79 from fhs/plan9
Browse files Browse the repository at this point in the history
Fix build on Plan 9
  • Loading branch information
willscott authored Jul 9, 2020
2 parents 5f73bcc + f0ab767 commit db41665
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions control_plan9.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package reuseport

import (
"syscall"
)

func Control(network, address string, c syscall.RawConn) error {
return nil
}
2 changes: 1 addition & 1 deletion control_unix.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// +build !windows,!wasm
// +build !plan9,!windows,!wasm

package reuseport

Expand Down

0 comments on commit db41665

Please sign in to comment.