2002-10-15 03:11:28 +05:30
|
|
|
#ifndef _SERVERPACKET_H
|
|
|
|
#define _SERVERPACKET_H
|
|
|
|
|
2003-12-17 02:14:15 +05:30
|
|
|
#include "packet.h"
|
2002-10-15 03:11:28 +05:30
|
|
|
|
|
|
|
int sendOffer(struct dhcpMessage *oldpacket);
|
|
|
|
int sendNAK(struct dhcpMessage *oldpacket);
|
|
|
|
int sendACK(struct dhcpMessage *oldpacket, u_int32_t yiaddr);
|
|
|
|
int send_inform(struct dhcpMessage *oldpacket);
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|