add "wpad" DHCP option. Spotted some optimization opportunities: -80 bytes

This commit is contained in:
Denis Vlasenko
2006-11-23 12:57:49 +00:00
parent 48237b0c88
commit c90c3f30a8
4 changed files with 64 additions and 54 deletions

View File

@@ -26,8 +26,8 @@ struct dhcp_option {
uint8_t code;
};
extern struct dhcp_option dhcp_options[];
extern int option_lengths[];
extern const struct dhcp_option dhcp_options[];
extern const unsigned char option_lengths[];
uint8_t *get_option(struct dhcpMessage *packet, int code);
int end_option(uint8_t *optionptr);