hysteria-dev/core/sockopt/sockopt_others.go
2022-11-24 00:22:44 -08:00

14 lines
243 B
Go

//go:build !linux
package sockopt
import (
"errors"
"net"
"syscall"
)
func bindRawConn(network string, c syscall.RawConn, bindIface *net.Interface) error {
return errors.New("binding interface is not supported on the current system")
}