summaryrefslogtreecommitdiff
path: root/networking/udhcp/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'networking/udhcp/common.h')
-rw-r--r--networking/udhcp/common.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/networking/udhcp/common.h b/networking/udhcp/common.h
index 15fe785c1..9c3b4960b 100644
--- a/networking/udhcp/common.h
+++ b/networking/udhcp/common.h
@@ -161,6 +161,11 @@ struct dhcp_option {
161 uint8_t code; 161 uint8_t code;
162}; 162};
163 163
164struct option_set {
165 uint8_t *data;
166 struct option_set *next;
167};
168
164extern const struct dhcp_option dhcp_options[]; 169extern const struct dhcp_option dhcp_options[];
165extern const char dhcp_option_strings[]; 170extern const char dhcp_option_strings[];
166extern const uint8_t dhcp_option_lengths[]; 171extern const uint8_t dhcp_option_lengths[];
@@ -173,6 +178,9 @@ void udhcp_add_simple_option(uint8_t *optionptr, uint8_t code, uint32_t data) FA
173char *dname_dec(const uint8_t *cstr, int clen, const char *pre) FAST_FUNC; 178char *dname_dec(const uint8_t *cstr, int clen, const char *pre) FAST_FUNC;
174uint8_t *dname_enc(const uint8_t *cstr, int clen, const char *src, int *retlen) FAST_FUNC; 179uint8_t *dname_enc(const uint8_t *cstr, int clen, const char *src, int *retlen) FAST_FUNC;
175#endif 180#endif
181/* 2nd param is actually "struct option_set**" */
182int FAST_FUNC udhcp_str2optset(const char *const_line, void *arg);
183
176 184
177// RFC 2131 Table 5: Fields and options used by DHCP clients 185// RFC 2131 Table 5: Fields and options used by DHCP clients
178// 186//