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 {
struct dhcp_option {
char name[10];
char flags;
- unsigned char code;
+ uint8_t code;
};
extern struct dhcp_option dhcp_options[];
extern int option_lengths[];
-unsigned char *get_option(struct dhcpMessage *packet, int code);
-int end_option(unsigned char *optionptr);
-int add_option_string(unsigned char *optionptr, unsigned char *string);
-int add_simple_option(unsigned char *optionptr, unsigned char code, u_int32_t data);
+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);