Searched refs:dhcp6_rx_options (Results 1 – 1 of 1) sorted by relevance
/third_party/lwip/src/core/ipv6/ |
D | dhcp6.c | 116 struct dhcp6_option_info dhcp6_rx_options[DHCP6_OPTION_IDX_MAX]; variable 118 #define dhcp6_option_given(dhcp6, idx) (dhcp6_rx_options[idx].option_given != 0) 119 #define dhcp6_got_option(dhcp6, idx) (dhcp6_rx_options[idx].option_given = 1) 120 #define dhcp6_clear_option(dhcp6, idx) (dhcp6_rx_options[idx].option_given = 0) 121 …fine dhcp6_clear_all_options(dhcp6) (memset(dhcp6_rx_options, 0, sizeof(dhcp6_rx_options… 122 #define dhcp6_get_option_start(dhcp6, idx) (dhcp6_rx_options[idx].val_start) 123 #define dhcp6_get_option_length(dhcp6, idx) (dhcp6_rx_options[idx].val_length) 124 … dhcp6_set_option(dhcp6, idx, start, len) do { dhcp6_rx_options[idx].val_start = (start); dhcp6_rx…
|