From: Steven Barth Date: Tue, 10 Jun 2014 08:40:14 +0000 (+0200) Subject: Fix DHCP settings for /28 X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fodhcpd.git;a=commitdiff_plain;h=6c93cef912cc3f9b0bd0805bd66289d72bc315e5 Fix DHCP settings for /28 --- diff --git a/src/dhcpv4.c b/src/dhcpv4.c index ad14e34..4b69467 100644 --- a/src/dhcpv4.c +++ b/src/dhcpv4.c @@ -129,9 +129,12 @@ int setup_dhcpv4_interface(struct interface *iface, bool enable) } else if (ntohl(mask.s_addr) <= 0xffffffc0) { iface->dhcpv4_start.s_addr = start | htonl(10); iface->dhcpv4_end.s_addr = end | htonl(60); - } else { + } else if (ntohl(mask.s_addr) <= 0xffffffe0) { iface->dhcpv4_start.s_addr = start | htonl(10); iface->dhcpv4_end.s_addr = end | htonl(30); + } else { + iface->dhcpv4_start.s_addr = start | htonl(3); + iface->dhcpv4_end.s_addr = end | htonl(12); } }