"Robert P. J. Day" | 63fc1a9 | 2006-07-02 19:47:05 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 2 | /* dhcpc.h */ |
Denis Vlasenko | 223bc97 | 2007-11-22 00:58:49 +0000 | [diff] [blame] | 3 | |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 4 | #ifndef _DHCPC_H |
| 5 | #define _DHCPC_H |
| 6 | |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 7 | #if __GNUC_PREREQ(4,1) |
| 8 | # pragma GCC visibility push(hidden) |
| 9 | #endif |
| 10 | |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 11 | struct client_config_t { |
Denis Vlasenko | 21765fa | 2008-06-13 20:44:05 +0000 | [diff] [blame] | 12 | uint8_t arp[6]; /* Our arp address */ |
Denis Vlasenko | e2d3ded | 2006-11-27 23:43:28 +0000 | [diff] [blame] | 13 | /* TODO: combine flag fields into single "unsigned opt" */ |
| 14 | /* (can be set directly to the result of getopt32) */ |
Denis Vlasenko | 2e4c3c4 | 2008-04-02 13:04:19 +0000 | [diff] [blame] | 15 | char no_default_options; /* Do not include default optins in request */ |
Denis Vlasenko | ff7cd6f | 2008-06-15 09:58:53 +0000 | [diff] [blame] | 16 | USE_FEATURE_UDHCP_PORT(uint16_t port;) |
Denis Vlasenko | 21765fa | 2008-06-13 20:44:05 +0000 | [diff] [blame] | 17 | int ifindex; /* Index number of the interface to use */ |
| 18 | uint8_t opt_mask[256 / 8]; /* Bitmask of options to send (-O option) */ |
Denis Vlasenko | c82b510 | 2007-07-01 17:05:57 +0000 | [diff] [blame] | 19 | const char *interface; /* The name of the interface to use */ |
Denis Vlasenko | e2d3ded | 2006-11-27 23:43:28 +0000 | [diff] [blame] | 20 | char *pidfile; /* Optionally store the process ID */ |
Denis Vlasenko | c82b510 | 2007-07-01 17:05:57 +0000 | [diff] [blame] | 21 | const char *script; /* User script to run at dhcp events */ |
Denis Vlasenko | e2d3ded | 2006-11-27 23:43:28 +0000 | [diff] [blame] | 22 | uint8_t *clientid; /* Optional client id to use */ |
| 23 | uint8_t *vendorclass; /* Optional vendor class-id to use */ |
| 24 | uint8_t *hostname; /* Optional hostname to use */ |
| 25 | uint8_t *fqdn; /* Optional fully qualified domain name to use */ |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 26 | }; |
| 27 | |
Denis Vlasenko | d55fe3e | 2008-02-04 13:12:16 +0000 | [diff] [blame] | 28 | /* server_config sits in 1st half of bb_common_bufsiz1 */ |
Denis Vlasenko | 21765fa | 2008-06-13 20:44:05 +0000 | [diff] [blame] | 29 | #define client_config (*(struct client_config_t*)(&bb_common_bufsiz1[COMMON_BUFSIZE / 2])) |
Denis Vlasenko | d55fe3e | 2008-02-04 13:12:16 +0000 | [diff] [blame] | 30 | |
| 31 | #if ENABLE_FEATURE_UDHCP_PORT |
| 32 | #define CLIENT_PORT (client_config.port) |
| 33 | #else |
| 34 | #define CLIENT_PORT 68 |
| 35 | #endif |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 36 | |
| 37 | |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 38 | /*** clientpacket.h ***/ |
| 39 | |
Denis Vlasenko | 42b3dea | 2007-07-03 15:47:50 +0000 | [diff] [blame] | 40 | uint32_t random_xid(void); |
| 41 | int send_discover(uint32_t xid, uint32_t requested); |
| 42 | int send_selecting(uint32_t xid, uint32_t server, uint32_t requested); |
Denis Vlasenko | 223bc97 | 2007-11-22 00:58:49 +0000 | [diff] [blame] | 43 | #if ENABLE_FEATURE_UDHCPC_ARPING |
Denis Vlasenko | ca9635b | 2008-01-25 19:27:08 +0000 | [diff] [blame] | 44 | int send_decline(uint32_t xid, uint32_t server, uint32_t requested); |
Denis Vlasenko | 223bc97 | 2007-11-22 00:58:49 +0000 | [diff] [blame] | 45 | #endif |
Denis Vlasenko | 42b3dea | 2007-07-03 15:47:50 +0000 | [diff] [blame] | 46 | int send_renew(uint32_t xid, uint32_t server, uint32_t ciaddr); |
| 47 | int send_renew(uint32_t xid, uint32_t server, uint32_t ciaddr); |
| 48 | int send_release(uint32_t server, uint32_t ciaddr); |
Denis Vlasenko | 6de8994 | 2008-05-21 07:05:06 +0000 | [diff] [blame] | 49 | |
| 50 | int udhcp_recv_raw_packet(struct dhcpMessage *payload, int fd); |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 51 | |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 52 | #if __GNUC_PREREQ(4,1) |
| 53 | # pragma GCC visibility pop |
| 54 | #endif |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 55 | |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 56 | #endif |