Home
last modified time | relevance | path

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

/external/lib/lwip/netif/ppp/
A Dauth.c410 struct protent *protp; in link_down() local
419 if (!protp->enabled_flag) { in link_down()
422 if (protp->protocol != PPP_LCP && protp->lowerdown != NULL) { in link_down()
423 (*protp->lowerdown)(unit); in link_down()
425 if (protp->protocol < 0xC000 && protp->close != NULL) { in link_down()
447 struct protent *protp; in link_established() local
459 if (protp->protocol != PPP_LCP && protp->enabled_flag && protp->lowerup != NULL) { in link_established()
460 (*protp->lowerup)(unit); in link_established()
528 struct protent *protp; in network_phase() local
552 if (protp->protocol < 0xC000 && protp->enabled_flag && protp->open != NULL) { in network_phase()
[all …]
A Dppp.c441 struct protent *protp; in pppInit() local
454 for (j = 0; (protp = ppp_protocols[j]) != NULL; ++j) { in pppInit()
455 (*protp->init)(i); in pppInit()
1684 struct protent *protp; in pppInput() local
1690 for (i = 0; (protp = ppp_protocols[i]) != NULL; ++i) { in pppInput()
1691 if (protp->protocol == protocol && protp->enabled_flag) { in pppInput()
1692 PPPDEBUG(LOG_INFO, ("pppInput[%d]: %s len=%d\n", pd, protp->name, nb->len)); in pppInput()
1694 (*protp->input)(pd, nb->payload, nb->len); in pppInput()
A Dlcp.c449 struct protent *protp; in lcp_rprotrej() local
473 for (i = 0; (protp = ppp_protocols[i]) != NULL; ++i) { in lcp_rprotrej()
474 if (protp->protocol == prot && protp->enabled_flag) { in lcp_rprotrej()
475 (*protp->protrej)(f->unit); in lcp_rprotrej()

Completed in 9 milliseconds