Home
last modified time | relevance | path

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

/third_party/lwip/src/netif/ppp/
Dauth.c1200 int tlim; in np_up() local
1213 tlim = (*idle_time_hook)(NULL); in np_up()
1216 tlim = pcb->settings.idle_time_limit; in np_up()
1217 if (tlim > 0) in np_up()
1218 TIMEOUT(check_idle, (void*)pcb, tlim); in np_up()
1325 int tlim; in check_idle() local
1331 tlim = idle_time_hook(&idle); in check_idle()
1335 tlim = pcb->settings.idle_time_limit - itime; in check_idle()
1339 if (tlim <= 0) { in check_idle()
1348 TIMEOUT(check_idle, (void*)pcb, tlim); in check_idle()