28 lines
500 B
Go
28 lines
500 B
Go
package dialer
|
|
|
|
import (
|
|
"net"
|
|
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
func bindDevice(network, address string, fd uintptr, ifceName string) error {
|
|
if ifceName == "" {
|
|
return nil
|
|
}
|
|
|
|
host, _, _ := net.SplitHostPort(address)
|
|
if ip := net.ParseIP(host); ip != nil && !ip.IsGlobalUnicast() {
|
|
return nil
|
|
}
|
|
|
|
return unix.BindToDevice(int(fd), ifceName)
|
|
}
|
|
|
|
func setMark(fd uintptr, mark int) error {
|
|
if mark == 0 {
|
|
return nil
|
|
}
|
|
return unix.SetsockoptInt(int(fd), unix.SOL_SOCKET, unix.SO_MARK, mark)
|
|
}
|