summaryrefslogtreecommitdiffhomepage
path: root/src/odhcpd.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/odhcpd.c')
-rw-r--r--src/odhcpd.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/odhcpd.c b/src/odhcpd.c
index fafa3f6..8906384 100644
--- a/src/odhcpd.c
+++ b/src/odhcpd.c
@@ -300,19 +300,6 @@ struct interface* odhcpd_get_interface_by_index(int ifindex)
return NULL;
}
-struct interface* odhcpd_get_master_interface(void)
-{
- struct interface *iface;
-
- avl_for_each_element(&interfaces, iface, avl) {
- if (iface->master)
- return iface;
- }
-
- return NULL;
-}
-
-
/* Convenience function to receive and do basic validation of packets */
static void odhcpd_receive_packets(struct uloop_fd *u, _unused unsigned int events)
{