mirror of
https://github.com/sheumann/hush.git
synced 2025-01-03 16:29:50 +00:00
12 lines
259 B
C
12 lines
259 B
C
|
#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
|