mirror of
https://github.com/zrepl/zrepl.git
synced 2024-11-22 08:23:50 +01:00
14 lines
263 B
Go
14 lines
263 B
Go
//go:build !linux && !freebsd
|
|
// +build !linux,!freebsd
|
|
|
|
package tcpsock
|
|
|
|
import (
|
|
"fmt"
|
|
"syscall"
|
|
)
|
|
|
|
func freeBind(network, address string, c syscall.RawConn) error {
|
|
return fmt.Errorf("IP_FREEBIND equivalent functionality not supported on this platform")
|
|
}
|