aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp/options.h
diff options
context:
space:
mode:
Diffstat (limited to 'networking/udhcp/options.h')
-rw-r--r--networking/udhcp/options.h10
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 {
24struct dhcp_option { 24struct 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
30extern struct dhcp_option dhcp_options[]; 30extern struct dhcp_option dhcp_options[];
31extern int option_lengths[]; 31extern int option_lengths[];
32 32
33unsigned char *get_option(struct dhcpMessage *packet, int code); 33uint8_t *get_option(struct dhcpMessage *packet, int code);
34int end_option(unsigned char *optionptr); 34int end_option(uint8_t *optionptr);
35int add_option_string(unsigned char *optionptr, unsigned char *string); 35int add_option_string(uint8_t *optionptr, uint8_t *string);
36int add_simple_option(unsigned char *optionptr, unsigned char code, u_int32_t data); 36int add_simple_option(uint8_t *optionptr, uint8_t code, uint32_t data);
37struct option_set *find_option(struct option_set *opt_list, char code); 37struct option_set *find_option(struct option_set *opt_list, char code);
38void attach_option(struct option_set **opt_list, struct dhcp_option *option, char *buffer, int length); 38void attach_option(struct option_set **opt_list, struct dhcp_option *option, char *buffer, int length);
39 39