Lines Matching refs:confopt
128 dhcp_confopt_t confopt, *tdp, *ddp = NULL;
166 confopt.co_type = DHCP_COMMENT;
167 confopt.co_comment = strdup(cp + 1);
168 if (confopt.co_comment == NULL)
176 confopt.co_type = DHCP_KEY;
177 confopt.co_key = strdup(cp);
178 if (confopt.co_key == NULL)
181 confopt.co_value = strdup(value + 1);
182 if (confopt.co_value == NULL) {
183 free(confopt.co_key);
193 tdp[entry] = confopt;