//go:build !linux package transport import ( "fmt" "syscall" ) func udpBindDeviceControl(device string) (func(string, string, syscall.RawConn) error, error) { return nil, fmt.Errorf("transport: bind device %s is only supported on linux", device) }