diff options
Diffstat (limited to 'interfaces/bindtodevice_bsd.go')
-rw-r--r-- | interfaces/bindtodevice_bsd.go | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/interfaces/bindtodevice_bsd.go b/interfaces/bindtodevice_bsd.go new file mode 100644 index 0000000..180c3eb --- /dev/null +++ b/interfaces/bindtodevice_bsd.go @@ -0,0 +1,18 @@ +// +build freebsd openbsd netbsd darwin + +package interfaces + +import ( + "net" + "syscall" +) + +// BindToInterface emulates linux's SO_BINDTODEVICE option for a socket by using +// IP_RECVIF. +func BindToInterface(fd int, ifname string) error { + iface, err := net.InterfaceByName(ifname) + if err != nil { + return err + } + return syscall.SetsockoptInt(fd, syscall.IPPROTO_IP, syscall.IP_RECVIF, iface.Index) +} |