busybox/networking/udhcp/serverpacket.h

13 lines
278 B
C
Raw Normal View History

2002-10-15 03:11:28 +05:30
#ifndef _SERVERPACKET_H
#define _SERVERPACKET_H
#include "packet.h"
2002-10-15 03:11:28 +05:30
int sendOffer(struct dhcpMessage *oldpacket);
int sendNAK(struct dhcpMessage *oldpacket);
2004-01-31 05:15:53 +05:30
int sendACK(struct dhcpMessage *oldpacket, uint32_t yiaddr);
2002-10-15 03:11:28 +05:30
int send_inform(struct dhcpMessage *oldpacket);
#endif