Lines Matching refs:list
93 // DHCP option codes (partial list). See RFC 2132 and
101 #define DHCP_OPT_PARAM_REQ DHCP_STRING | 0x37 // list of options client wants
242 void *options[256]; // list of DHCP options loaded from the config file
1128 // Retrives Requested Parameter list from dhcp req packet.
1129 static uint8_t get_reqparam(uint8_t **list)
1132 if(*list) free(*list);
1136 *list = xzalloc(len+1);
1137 memcpy(*list, ++optptr, len);
1142 static uint8_t* set_reqparam(uint8_t *optptr, uint8_t *list)
1147 while (*list) {
1148 reqcode = *list++;