diff options
Diffstat (limited to 'src/dhcpv4.c')
-rw-r--r-- | src/dhcpv4.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dhcpv4.c b/src/dhcpv4.c index 6b3d782..bfe70cb 100644 --- a/src/dhcpv4.c +++ b/src/dhcpv4.c @@ -58,13 +58,13 @@ struct odhcpd_ref_ip { }; /* Create socket and register events */ -int init_dhcpv4(void) +int dhcpv4_init(void) { uloop_timeout_set(&valid_until_timeout, 1000); return 0; } -int setup_dhcpv4_interface(struct interface *iface, bool enable) +int dhcpv4_setup_interface(struct interface *iface, bool enable) { if (iface->dhcpv4_event.uloop.fd > 0) { uloop_fd_delete(&iface->dhcpv4_event.uloop); |