Searched refs:holdoff (Results 1 – 6 of 6) sorted by relevance
/third_party/lwip/src/include/netif/ppp/ |
D | pppapi.h | 88 u16_t holdoff; member 123 err_t pppapi_connect(ppp_pcb *pcb, u16_t holdoff);
|
D | ppp.h | 617 err_t ppp_connect(ppp_pcb *pcb, u16_t holdoff);
|
/third_party/lwip/src/netif/ppp/ |
D | pppapi.c | 277 return ppp_connect(msg->msg.ppp, msg->msg.msg.connect.holdoff); in pppapi_do_ppp_connect() 285 pppapi_connect(ppp_pcb *pcb, u16_t holdoff) in pppapi_connect() argument 292 PPPAPI_VAR_REF(msg).msg.msg.connect.holdoff = holdoff; in pppapi_connect()
|
D | ppp.c | 274 err_t ppp_connect(ppp_pcb *pcb, u16_t holdoff) { in ppp_connect() argument 280 PPPDEBUG(LOG_DEBUG, ("ppp_connect[%d]: holdoff=%d\n", pcb->netif->num, holdoff)); in ppp_connect() 284 if (holdoff == 0) { in ppp_connect() 290 sys_timeout((u32_t)(holdoff*1000), ppp_do_connect, pcb); in ppp_connect()
|
/third_party/lwip/doc/ |
D | ppp.txt | 287 * Initiate PPP negotiation, without waiting (holdoff=0), can only be called 290 u16_t holdoff = 0; 291 ppp_connect(ppp, holdoff);
|
/third_party/lwip/ |
D | CHANGELOG | 725 - Added PPP holdoff support, allow the lwIP user to wait a little bit before
|