mirror of
https://github.com/cmz0228/hysteria-dev.git
synced 2025-06-09 13:59:54 +00:00
14 lines
243 B
Go
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")
|
|
}
|