1 2 3 4 5 6 7 8 9 10
package dhcpv4 import ( "github.com/insomniacslk/dhcp/interfaces" ) // BindToInterface (deprecated) redirects to interfaces.BindToInterface func BindToInterface(fd int, ifname string) error { return interfaces.BindToInterface(fd, ifname) }