summaryrefslogtreecommitdiffhomepage
path: root/dhcpv4/bindtodevice_bsd.go
blob: 0f1b5819757a80ece29a4fa4b933d08bb9636710 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// +build freebsd openbsd netbsd

package dhcpv4

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)
}