Home
last modified time | relevance | path

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

/lib/liblwip/src/netif/ppp/
Dppp.c171 int pd; member
348 pppRecvWakeup(int pd) in pppRecvWakeup() argument
350 PPPDEBUG(LOG_DEBUG, ("pppRecvWakeup: unit %d\n", pd)); in pppRecvWakeup()
351 if (pppControl[pd].openFlag != 0) { in pppRecvWakeup()
352 sio_read_abort(pppControl[pd].fd); in pppRecvWakeup()
359 pppLinkTerminated(int pd) in pppLinkTerminated() argument
361 PPPDEBUG(LOG_DEBUG, ("pppLinkTerminated: unit %d\n", pd)); in pppLinkTerminated()
364 if (pppControl[pd].ethif) { in pppLinkTerminated()
365 pppoe_disconnect(pppControl[pd].pppoe_sc); in pppLinkTerminated()
372 pppRecvWakeup(pd); in pppLinkTerminated()
[all …]
Dppp.h162 int pppClose(int pd);
167 void pppSigHUP(int pd);
173 int pppIOCtl(int pd, int cmd, void *arg);
178 u_short pppMTU(int pd);
186 void pppos_input(int pd, u_char* data, int len);
192 void ppp_set_netif_statuscallback(int pd, netif_status_callback_fn status_callback);
196 void ppp_set_netif_linkcallback(int pd, netif_status_callback_fn link_callback);
Dppp_impl.h322 int pppWrite(int pd, const u_char *s, int n);
324 void pppInProcOverEthernet(int pd, struct pbuf *pb);
328 void pppLinkTerminated(int pd);
330 void pppLinkDown(int pd);
Dppp_oe.c144 pppoe_create(struct netif *ethif, int pd, void (*linkStatusCB)(int pd, int up), struct pppoe_softc … in pppoe_create() argument
158 sc->sc_pd = pd; in pppoe_create()
/lib/liblwip/src/include/netif/
Dppp_oe.h151 void (*sc_linkStatusCB)(int pd, int up);
174 err_t pppoe_create(struct netif *ethif, int pd, void (*linkStatusCB)(int pd, int up), struct pppoe_…