move a couple of functions from common code (options.c) to udhcpd private

code (files.c) to make udhcpc a little smaller.
This commit is contained in:
Paul Fox
2005-09-22 19:03:24 +00:00
parent 28de951b02
commit b6f71645f4
4 changed files with 51 additions and 50 deletions

View File

@@ -34,7 +34,5 @@ uint8_t *get_option(struct dhcpMessage *packet, int code);
int end_option(uint8_t *optionptr);
int add_option_string(uint8_t *optionptr, uint8_t *string);
int add_simple_option(uint8_t *optionptr, uint8_t code, uint32_t data);
struct option_set *find_option(struct option_set *opt_list, char code);
void attach_option(struct option_set **opt_list, struct dhcp_option *option, char *buffer, int length);
#endif