add back in udhcp support

This commit is contained in:
Mike Frysinger
2006-05-08 03:20:50 +00:00
parent 15fe2e11d7
commit 7031f62d9b
62 changed files with 5815 additions and 0 deletions

View File

@ -0,0 +1,12 @@
#ifndef _SERVERPACKET_H
#define _SERVERPACKET_H
#include "packet.h"
int sendOffer(struct dhcpMessage *oldpacket);
int sendNAK(struct dhcpMessage *oldpacket);
int sendACK(struct dhcpMessage *oldpacket, uint32_t yiaddr);
int send_inform(struct dhcpMessage *oldpacket);
#endif