/third_party/lwip/src/include/netif/ppp/ |
D | pppapi.h | 57 struct netif *pppif; member 65 struct netif *pppif; member 75 struct netif *pppif; member 111 ppp_pcb *pppapi_pppos_create(struct netif *pppif, pppos_output_cb_fn output_cb, ppp_link_status_cb_… 114 ppp_pcb *pppapi_pppoe_create(struct netif *pppif, struct netif *ethif, const char *service_name, 119 ppp_pcb *pppapi_pppol2tp_create(struct netif *pppif, struct netif *netif, ip_addr_t *ipaddr, u16_t …
|
D | pppos.h | 101 ppp_pcb *pppos_create(struct netif *pppif, pppos_output_cb_fn output_cb,
|
D | pppoe.h | 169 ppp_pcb *pppoe_create(struct netif *pppif,
|
D | pppol2tp.h | 199 ppp_pcb *pppol2tp_create(struct netif *pppif,
|
D | ppp_impl.h | 398 ppp_pcb *ppp_new(struct netif *pppif, const struct link_callbacks *callbacks, void *link_ctx_cb,
|
/third_party/lwip/src/netif/ppp/ |
D | pppapi.c | 132 msg->msg.ppp = pppos_create(msg->msg.msg.serialcreate.pppif, msg->msg.msg.serialcreate.output_cb, in pppapi_do_pppos_create() 142 pppapi_pppos_create(struct netif *pppif, pppos_output_cb_fn output_cb, in pppapi_pppos_create() argument 150 PPPAPI_VAR_REF(msg).msg.msg.serialcreate.pppif = pppif; in pppapi_pppos_create() 173 msg->msg.ppp = pppoe_create(msg->msg.msg.ethernetcreate.pppif, msg->msg.msg.ethernetcreate.ethif, in pppapi_do_pppoe_create() 184 pppapi_pppoe_create(struct netif *pppif, struct netif *ethif, const char *service_name, in pppapi_pppoe_create() argument 193 PPPAPI_VAR_REF(msg).msg.msg.ethernetcreate.pppif = pppif; in pppapi_pppoe_create() 218 msg->msg.ppp = pppol2tp_create(msg->msg.msg.l2tpcreate.pppif, in pppapi_do_pppol2tp_create() 236 pppapi_pppol2tp_create(struct netif *pppif, struct netif *netif, ip_addr_t *ipaddr, u16_t port, in pppapi_pppol2tp_create() argument 249 PPPAPI_VAR_REF(msg).msg.msg.l2tpcreate.pppif = pppif; in pppapi_pppol2tp_create()
|
D | ppp.c | 649 ppp_pcb *ppp_new(struct netif *pppif, const struct link_callbacks *callbacks, void *link_ctx_cb, pp… in ppp_new() argument 702 pcb->netif = pppif; in ppp_new() 703 MIB2_INIT_NETIF(pppif, snmp_ifType_ppp, 0); in ppp_new()
|
D | pppos.c | 174 ppp_pcb *pppos_create(struct netif *pppif, pppos_output_cb_fn output_cb, in pppos_create() argument 186 ppp = ppp_new(pppif, &pppos_callbacks, pppos, link_status_cb, ctx_cb); in pppos_create()
|
D | pppol2tp.c | 109 ppp_pcb *pppol2tp_create(struct netif *pppif, in pppol2tp_create() argument 136 ppp = ppp_new(pppif, &pppol2tp_callbacks, l2tp, link_status_cb, ctx_cb); in pppol2tp_create()
|
D | pppoe.c | 171 ppp_pcb *pppoe_create(struct netif *pppif, in pppoe_create() argument 189 ppp = ppp_new(pppif, &pppoe_callbacks, sc, link_status_cb, ctx_cb); in pppoe_create()
|
/third_party/lwip/doc/ |
D | ppp.txt | 76 struct netif *pppif = ppp_netif(pcb); 86 printf(" our_ipaddr = %s\n", ipaddr_ntoa(&pppif->ip_addr)); 87 printf(" his_ipaddr = %s\n", ipaddr_ntoa(&pppif->gw)); 88 printf(" netmask = %s\n", ipaddr_ntoa(&pppif->netmask)); 97 printf(" our6_ipaddr = %s\n", ip6addr_ntoa(netif_ip6_addr(pppif, 0)));
|