summaryrefslogtreecommitdiffhomepage
path: root/dhcpv4/bindtodevice_linux.go
blob: c1ae025dd8ece2382a9eb1da96f30c5c434b39d2 (plain)
1
2
3
4
5
6
7
8
9
// +build linux

package dhcpv4

import "golang.org/x/sys/unix"

func BindToInterface(fd int, ifname string) error {
	return unix.BindToDevice(fd, ifname)
}