aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp/serverpacket.c
diff options
context:
space:
mode:
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