summaryrefslogtreecommitdiffhomepage
path: root/dhcpv4/bindtointerface.go
blob: dbe8fbcd9f495ef9b05c9e2f9a3a22b516811e45 (plain)
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)
}