diff options
Diffstat (limited to 'networking/udhcp/options.h')
-rw-r--r-- | networking/udhcp/options.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/networking/udhcp/options.h b/networking/udhcp/options.h index cf3fe3b18..70b8704d2 100644 --- a/networking/udhcp/options.h +++ b/networking/udhcp/options.h | |||
@@ -107,13 +107,13 @@ extern const struct dhcp_option dhcp_options[]; | |||
107 | extern const char dhcp_option_strings[]; | 107 | extern const char dhcp_option_strings[]; |
108 | extern const uint8_t dhcp_option_lengths[]; | 108 | extern const uint8_t dhcp_option_lengths[]; |
109 | 109 | ||
110 | uint8_t *get_option(struct dhcpMessage *packet, int code); | 110 | uint8_t *get_option(struct dhcpMessage *packet, int code) FAST_FUNC; |
111 | int end_option(uint8_t *optionptr); | 111 | int end_option(uint8_t *optionptr) FAST_FUNC; |
112 | int add_option_string(uint8_t *optionptr, uint8_t *string); | 112 | int add_option_string(uint8_t *optionptr, uint8_t *string) FAST_FUNC; |
113 | int add_simple_option(uint8_t *optionptr, uint8_t code, uint32_t data); | 113 | int add_simple_option(uint8_t *optionptr, uint8_t code, uint32_t data) FAST_FUNC; |
114 | #if ENABLE_FEATURE_RFC3397 | 114 | #if ENABLE_FEATURE_RFC3397 |
115 | char *dname_dec(const uint8_t *cstr, int clen, const char *pre); | 115 | char *dname_dec(const uint8_t *cstr, int clen, const char *pre) FAST_FUNC; |
116 | uint8_t *dname_enc(const uint8_t *cstr, int clen, const char *src, int *retlen); | 116 | uint8_t *dname_enc(const uint8_t *cstr, int clen, const char *src, int *retlen) FAST_FUNC; |
117 | #endif | 117 | #endif |
118 | 118 | ||
119 | #if __GNUC_PREREQ(4,1) | 119 | #if __GNUC_PREREQ(4,1) |