source: MondoRescue/branches/stable/mindi-busybox/networking/udhcp/clientpacket.h@ 821

Last change on this file since 821 was 821, checked in by Bruno Cornec, 18 years ago

Addition of busybox 1.2.1 as a mindi-busybox new package
This should avoid delivering binary files in mindi not built there (Fedora and Debian are quite serious about that)

File size: 536 bytes
RevLine 
[821]1#ifndef _CLIENTPACKET_H
2#define _CLIENTPACKET_H
3
4#include "packet.h"
5
6unsigned long random_xid(void);
7int send_discover(unsigned long xid, unsigned long requested);
8int send_selecting(unsigned long xid, unsigned long server, unsigned long requested);
9int send_renew(unsigned long xid, unsigned long server, unsigned long ciaddr);
10int send_renew(unsigned long xid, unsigned long server, unsigned long ciaddr);
11int send_release(unsigned long server, unsigned long ciaddr);
12int get_raw_packet(struct dhcpMessage *payload, int fd);
13
14#endif
Note: See TracBrowser for help on using the repository browser.