Searched defs:last_router (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Devices/Network/lwip-new/src/core/ipv6/
H A Dnd6.c1292 /* last_router is used for round-robin router selection (as recommended
1295 static s8_t last_router; local
1302 if (++last_router >= LWIP_ND6_NUM_ROUTERS) {
1303 last_router = 0;
1315 if (++last_router >= LWIP_ND6_NUM_ROUTERS) {
1316 last_router = 0;
1327 if (++last_router >= LWIP_ND6_NUM_ROUTERS) {
1328 last_router = 0;

Completed in 46 milliseconds