diff options
Diffstat (limited to 'networking/udhcp/options.h')
-rw-r--r-- | networking/udhcp/options.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/networking/udhcp/options.h b/networking/udhcp/options.h index a62665801..fbe54c884 100644 --- a/networking/udhcp/options.h +++ b/networking/udhcp/options.h | |||
@@ -24,16 +24,16 @@ enum { | |||
24 | struct dhcp_option { | 24 | struct dhcp_option { |
25 | char name[10]; | 25 | char name[10]; |
26 | char flags; | 26 | char flags; |
27 | unsigned char code; | 27 | uint8_t code; |
28 | }; | 28 | }; |
29 | 29 | ||
30 | extern struct dhcp_option dhcp_options[]; | 30 | extern struct dhcp_option dhcp_options[]; |
31 | extern int option_lengths[]; | 31 | extern int option_lengths[]; |
32 | 32 | ||
33 | unsigned char *get_option(struct dhcpMessage *packet, int code); | 33 | uint8_t *get_option(struct dhcpMessage *packet, int code); |
34 | int end_option(unsigned char *optionptr); | 34 | int end_option(uint8_t *optionptr); |
35 | int add_option_string(unsigned char *optionptr, unsigned char *string); | 35 | int add_option_string(uint8_t *optionptr, uint8_t *string); |
36 | int add_simple_option(unsigned char *optionptr, unsigned char code, u_int32_t data); | 36 | int add_simple_option(uint8_t *optionptr, uint8_t code, uint32_t data); |
37 | struct option_set *find_option(struct option_set *opt_list, char code); | 37 | struct option_set *find_option(struct option_set *opt_list, char code); |
38 | void attach_option(struct option_set **opt_list, struct dhcp_option *option, char *buffer, int length); | 38 | void attach_option(struct option_set **opt_list, struct dhcp_option *option, char *buffer, int length); |
39 | 39 | ||