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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/networking/udhcp/options.h b/networking/udhcp/options.h
index 4bf73a17e..c98aec48f 100644
--- a/networking/udhcp/options.h
+++ b/networking/udhcp/options.h
@@ -98,13 +98,13 @@ enum {
#define OPT_DATA 2
struct dhcp_option {
- char opt_name[12];
- char flags;
+ uint8_t flags;
uint8_t code;
};
extern const struct dhcp_option dhcp_options[];
-extern const unsigned char option_lengths[];
+extern const char dhcp_option_strings[];
+extern const uint8_t dhcp_option_lengths[];
uint8_t *get_option(struct dhcpMessage *packet, int code);
int end_option(uint8_t *optionptr);