diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-03-21 06:15:28 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-03-21 06:15:28 +0100 |
commit | c7dc79e71ddbc1498736a2bbf65a3da179557f83 (patch) | |
tree | ab470e39f11f432b2099d3ebbe779d224bc1efba /networking/udhcp/dhcpc.h | |
parent | 2e7aa928360eb9b1c90fa2356734cee794b66516 (diff) | |
download | busybox-w32-c7dc79e71ddbc1498736a2bbf65a3da179557f83.tar.gz busybox-w32-c7dc79e71ddbc1498736a2bbf65a3da179557f83.tar.bz2 busybox-w32-c7dc79e71ddbc1498736a2bbf65a3da179557f83.zip |
udhcpd: untangle incredibly messy handling of DHCPREQUEST
Also fixes attacks possible via DHCPDECLINE / DHCPRELEASE
function old new delta
udhcpd_main 1846 1949 +103
send_renew 105 142 +37
send_NAK 61 - -61
send_ACK 180 - -180
------------------------------------------------------------------------------
(add/remove: 0/2 grow/shrink: 2/0 up/down: 140/-241) Total: -101 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/udhcp/dhcpc.h')
-rw-r--r-- | networking/udhcp/dhcpc.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/networking/udhcp/dhcpc.h b/networking/udhcp/dhcpc.h index dfab2368c..c9827b6e7 100644 --- a/networking/udhcp/dhcpc.h +++ b/networking/udhcp/dhcpc.h | |||
@@ -40,7 +40,6 @@ int send_select(uint32_t xid, uint32_t server, uint32_t requested) FAST_FUNC; | |||
40 | int send_decline(uint32_t xid, uint32_t server, uint32_t requested) FAST_FUNC; | 40 | int send_decline(uint32_t xid, uint32_t server, uint32_t requested) FAST_FUNC; |
41 | #endif | 41 | #endif |
42 | int send_renew(uint32_t xid, uint32_t server, uint32_t ciaddr) FAST_FUNC; | 42 | int send_renew(uint32_t xid, uint32_t server, uint32_t ciaddr) FAST_FUNC; |
43 | int send_renew(uint32_t xid, uint32_t server, uint32_t ciaddr) FAST_FUNC; | ||
44 | int send_release(uint32_t server, uint32_t ciaddr) FAST_FUNC; | 43 | int send_release(uint32_t server, uint32_t ciaddr) FAST_FUNC; |
45 | 44 | ||
46 | int udhcp_recv_raw_packet(struct dhcp_packet *dhcp_pkt, int fd) FAST_FUNC; | 45 | int udhcp_recv_raw_packet(struct dhcp_packet *dhcp_pkt, int fd) FAST_FUNC; |