2002-10-14 21:41:28 +00:00
|
|
|
#ifndef _SERVERPACKET_H
|
|
|
|
#define _SERVERPACKET_H
|
|
|
|
|
2003-12-16 20:44:15 +00:00
|
|
|
#include "packet.h"
|
2002-10-14 21:41:28 +00:00
|
|
|
|
|
|
|
int sendOffer(struct dhcpMessage *oldpacket);
|
|
|
|
int sendNAK(struct dhcpMessage *oldpacket);
|
2004-01-30 23:45:53 +00:00
|
|
|
int sendACK(struct dhcpMessage *oldpacket, uint32_t yiaddr);
|
2002-10-14 21:41:28 +00:00
|
|
|
int send_inform(struct dhcpMessage *oldpacket);
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|