mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 11:57:39 +03:00
Fix SO_BINDTOIFINDEX
usage
This commit is contained in:
parent
8e89f9b4dc
commit
6e3921083b
1 changed files with 14 additions and 12 deletions
|
@ -14,19 +14,18 @@ var ifIndexDisabled atomic.Bool
|
|||
|
||||
func bindToInterface(conn syscall.RawConn, network string, address string, finder InterfaceFinder, interfaceName string, interfaceIndex int, preferInterfaceName bool) error {
|
||||
return Raw(conn, func(fd uintptr) error {
|
||||
if interfaceIndex != -1 {
|
||||
return unix.SetsockoptInt(int(fd), unix.SOL_SOCKET, unix.SO_BINDTOIFINDEX, interfaceIndex)
|
||||
}
|
||||
if interfaceName == "" {
|
||||
return os.ErrInvalid
|
||||
}
|
||||
if !preferInterfaceName && finder != nil && !ifIndexDisabled.Load() {
|
||||
var err error
|
||||
interfaceIndex, err = finder.InterfaceIndexByName(interfaceName)
|
||||
if err != nil {
|
||||
return err
|
||||
if !preferInterfaceName && !ifIndexDisabled.Load() {
|
||||
if interfaceIndex == -1 {
|
||||
if interfaceName == "" {
|
||||
return os.ErrInvalid
|
||||
}
|
||||
var err error
|
||||
interfaceIndex, err = finder.InterfaceIndexByName(interfaceName)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
err = unix.SetsockoptInt(int(fd), unix.SOL_SOCKET, unix.SO_BINDTOIFINDEX, interfaceIndex)
|
||||
err := unix.SetsockoptInt(int(fd), unix.SOL_SOCKET, unix.SO_BINDTOIFINDEX, interfaceIndex)
|
||||
if err == nil {
|
||||
return nil
|
||||
} else if E.IsMulti(err, unix.ENOPROTOOPT, unix.EINVAL) {
|
||||
|
@ -35,6 +34,9 @@ func bindToInterface(conn syscall.RawConn, network string, address string, finde
|
|||
return err
|
||||
}
|
||||
}
|
||||
if interfaceName == "" {
|
||||
return os.ErrInvalid
|
||||
}
|
||||
return unix.BindToDevice(int(fd), interfaceName)
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue