Home
last modified time | relevance | path

Searched refs:accomp (Results 1 – 4 of 4) sorted by relevance

/third_party/lwip/src/netif/ppp/
Dpppos.c66 static void pppos_send_config(ppp_pcb *ppp, void *ctx, u32_t accm, int pcomp, int accomp);
67 static void pppos_recv_config(ppp_pcb *ppp, void *ctx, u32_t accm, int pcomp, int accomp);
284 if (!pppos->accomp) { in pppos_netif_output()
738 pppos_send_config(ppp_pcb *ppp, void *ctx, u32_t accm, int pcomp, int accomp) in pppos_send_config() argument
745 pppos->accomp = accomp; in pppos_send_config()
758 pppos_recv_config(ppp_pcb *ppp, void *ctx, u32_t accm, int pcomp, int accomp) in pppos_recv_config() argument
765 LWIP_UNUSED_ARG(accomp); in pppos_recv_config()
Dppp.c1028 int ppp_send_config(ppp_pcb *pcb, int mtu, u32_t accm, int pcomp, int accomp) { in ppp_send_config() argument
1033 pcb->link_cb->send_config(pcb, pcb->link_ctx_cb, accm, pcomp, accomp); in ppp_send_config()
1044 int ppp_recv_config(ppp_pcb *pcb, int mru, u32_t accm, int pcomp, int accomp) { in ppp_recv_config() argument
1048 pcb->link_cb->recv_config(pcb, pcb->link_ctx_cb, accm, pcomp, accomp); in ppp_recv_config()
/third_party/lwip/src/include/netif/ppp/
Dppp_impl.h159 void (*send_config)(ppp_pcb *pcb, void *ctx, u32_t accm, int pcomp, int accomp);
161 void (*recv_config)(ppp_pcb *pcb, void *ctx, u32_t accm, int pcomp, int accomp);
426 int ppp_send_config(ppp_pcb *pcb, int mtu, u32_t accm, int pcomp, int accomp);
427 int ppp_recv_config(ppp_pcb *pcb, int mru, u32_t accm, int pcomp, int accomp);
Dpppos.h89 unsigned int accomp :1; /* Does peer accept addr/ctl compression? */ member