hysteria-dev/pkg/sockopt/sockopt_others.go
2022-06-06 16:06:30 -07: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")
}