2006-07-03 01:17:05 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2006-05-08 08:50:50 +05:30
|
|
|
#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
|