aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp/serverpacket.c
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2003-06-10 17:22:49 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2003-06-10 17:22:49 +0000
commit24833430bc2dbea733c3b0b9ea6c6b976f95474a (patch)
tree805a4197b8a0d36eaa6880dfc23d8c2539359fe9 /networking/udhcp/serverpacket.c
parent6c43f743a3f607f91ee22a53db880fce2df645f0 (diff)
downloadbusybox-w32-24833430bc2dbea733c3b0b9ea6c6b976f95474a.tar.gz
busybox-w32-24833430bc2dbea733c3b0b9ea6c6b976f95474a.tar.bz2
busybox-w32-24833430bc2dbea733c3b0b9ea6c6b976f95474a.zip
Vodz, last_patch_88
Diffstat (limited to 'networking/udhcp/serverpacket.c')
-rw-r--r--networking/udhcp/serverpacket.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/networking/udhcp/serverpacket.c b/networking/udhcp/serverpacket.c
index e969c7af8..09682444e 100644
--- a/networking/udhcp/serverpacket.c
+++ b/networking/udhcp/serverpacket.c
@@ -25,11 +25,9 @@
25#include <string.h> 25#include <string.h>
26#include <time.h> 26#include <time.h>
27 27
28#include "packet.h"
29#include "debug.h"
30#include "dhcpd.h" 28#include "dhcpd.h"
31#include "options.h" 29#include "options.h"
32#include "leases.h" 30#include "common.h"
33 31
34/* send a packet to giaddr using the kernel ip stack */ 32/* send a packet to giaddr using the kernel ip stack */
35static int send_packet_to_relay(struct dhcpMessage *payload) 33static int send_packet_to_relay(struct dhcpMessage *payload)
@@ -258,6 +256,3 @@ int send_inform(struct dhcpMessage *oldpacket)
258 256
259 return send_packet(&packet, 0); 257 return send_packet(&packet, 0);
260} 258}
261
262
263