Home
last modified time | relevance | path

Searched refs:LWIP_ND6_NUM_ROUTERS (Results 1 – 2 of 2) sorted by relevance

/third_party/lwip/src/core/ipv6/
Dnd6.c80 struct nd6_router_list_entry default_router_list[LWIP_ND6_NUM_ROUTERS];
1027 for (i = 0; i < LWIP_ND6_NUM_ROUTERS; i++) { in nd6_tmr()
1694 for (i = 0; i < LWIP_ND6_NUM_ROUTERS; i++) { in nd6_select_router()
1722 if ((netif == NULL) && (++last_router >= LWIP_ND6_NUM_ROUTERS)) { in nd6_select_router()
1726 for (j = 0; j < LWIP_ND6_NUM_ROUTERS; j++) { in nd6_select_router()
1734 if (++i >= LWIP_ND6_NUM_ROUTERS) { in nd6_select_router()
1797 for (i = 0; i < LWIP_ND6_NUM_ROUTERS; i++) { in nd6_get_router()
1846 free_router_index = LWIP_ND6_NUM_ROUTERS; in nd6_new_router()
1847 for (router_index = LWIP_ND6_NUM_ROUTERS - 1; router_index >= 0; router_index--) { in nd6_new_router()
1858 if (free_router_index < LWIP_ND6_NUM_ROUTERS) { in nd6_new_router()
[all …]
/third_party/lwip/src/include/lwip/
Dopt.h2588 #if !defined LWIP_ND6_NUM_ROUTERS || defined __DOXYGEN__
2589 #define LWIP_ND6_NUM_ROUTERS 3 macro