Home
last modified time | relevance | path

Searched defs:dhcp (Results 1 – 3 of 3) sorted by relevance

/lib/liblwip/src/core/
Ddhcp.c140 #define dhcp_option_given(dhcp, idx) (dhcp_rx_options_given[idx] != 0) argument
141 #define dhcp_got_option(dhcp, idx) (dhcp_rx_options_given[idx] = 1) argument
142 #define dhcp_clear_option(dhcp, idx) (dhcp_rx_options_given[idx] = 0) argument
143 #define dhcp_clear_all_options(dhcp) (memset(dhcp_rx_options_given, 0, sizeof(dhcp_rx_opti… argument
144 #define dhcp_get_option_value(dhcp, idx) (dhcp_rx_options_val[idx]) argument
145 #define dhcp_set_option_value(dhcp, idx, val) (dhcp_rx_options_val[idx] = (val)) argument
199 struct dhcp *dhcp = netif->dhcp; in dhcp_handle_nak() local
227 struct dhcp *dhcp = netif->dhcp; in dhcp_check() local
254 struct dhcp *dhcp = netif->dhcp; in dhcp_handle_offer() local
285 struct dhcp *dhcp = netif->dhcp; in dhcp_select() local
[all …]
/lib/liblwip/src/include/lwip/
Ddhcp.h29 struct dhcp struct
36 struct dhcp_msg *msg_in; argument
47 struct dhcp_msg *msg_out; /* outgoing msg */ argument
52 ip_addr_t server_ip_addr; /* dhcp server address that offered this lease */ argument
74 struct dhcp_msg argument
Dnetif.h175 struct dhcp *dhcp; member