blob: 5a4fb27684afc5d34caebdb4f6b3d77f1d92f522 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef _SERVERPACKET_H
#define _SERVERPACKET_H
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
|