Home
last modified time | relevance | path

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

/third_party/lwip/doc/
Dppp.txt381 Received data on serial port should be sent to lwIP using the pppos_input()
384 If NO_SYS is 1 and if PPP_INPROC_IRQ_SAFE is 0 (the default), pppos_input()
387 Whatever the NO_SYS value, if PPP_INPROC_IRQ_SAFE is 1, pppos_input() is IRQ
389 to reduce your need of buffer if pppos_input() is called byte after byte in
398 if NO_SYS is 0 and if PPP_INPROC_IRQ_SAFE is 1, you may also use pppos_input()
399 from an RX thread, however pppos_input() is not thread safe by itself. You can
401 ppp_free() if pppos_input() can still be running, doing this is NOT thread safe
413 void pppos_input(ppp, buffer, buffer_len);
/third_party/lwip/src/include/netif/ppp/
Dpppos.h110 void pppos_input(ppp_pcb *ppp, u8_t* data, int len);
/third_party/lwip/src/netif/ppp/
Dpppos.c448 pppos_input(ppp, (u8_t*)n->payload, n->len); in pppos_input_sys()
478 pppos_input(ppp_pcb *ppp, u8_t *s, int l) in pppos_input() function