Home | History | Annotate | Download | only in dhcpcd

Lines Matching defs:option

28 	uint8_t option;
149 valid_length(uint8_t option, int dl, int *type)
157 for (opt = dhcp_opts; opt->option; opt++) {
158 if (opt->option != option)
179 /* unknown option, so let it pass */
238 /* Ensure we only get this option once */
265 get_option_addr32(uint32_t *a, const struct dhcp_message *dhcp, uint8_t option)
267 const uint8_t *p = get_option_raw(dhcp, option);
276 get_option_uint32(uint32_t *i, const struct dhcp_message *dhcp, uint8_t option)
280 if (get_option_addr32(&a, dhcp, option) == -1)