Searched refs:ppp_mppe_state (Results 1 – 3 of 3) sorted by relevance
/third_party/lwip/src/include/netif/ppp/ |
D | mppe.h | 154 typedef struct ppp_mppe_state { struct 167 } ppp_mppe_state; argument 169 void mppe_set_key(ppp_pcb *pcb, ppp_mppe_state *state, u8_t *key); 170 void mppe_init(ppp_pcb *pcb, ppp_mppe_state *state, u8_t options); 171 void mppe_comp_reset(ppp_pcb *pcb, ppp_mppe_state *state); 172 err_t mppe_compress(ppp_pcb *pcb, ppp_mppe_state *state, struct pbuf **pb, u16_t protocol); 173 void mppe_decomp_reset(ppp_pcb *pcb, ppp_mppe_state *state); 174 err_t mppe_decompress(ppp_pcb *pcb, ppp_mppe_state *state, struct pbuf **pb);
|
D | ppp.h | 404 ppp_mppe_state mppe_comp; /* MPPE "compressor" structure */ 405 ppp_mppe_state mppe_decomp; /* MPPE "decompressor" structure */
|
/third_party/lwip/src/netif/ppp/ |
D | mppe.c | 61 static void mppe_rekey(ppp_mppe_state * state, int initial_key) in mppe_rekey() 100 void mppe_set_key(ppp_pcb *pcb, ppp_mppe_state *state, u8_t *key) { in mppe_set_key() 109 mppe_init(ppp_pcb *pcb, ppp_mppe_state *state, u8_t options) in mppe_init() 181 void mppe_comp_reset(ppp_pcb *pcb, ppp_mppe_state *state) in mppe_comp_reset() 193 mppe_compress(ppp_pcb *pcb, ppp_mppe_state *state, struct pbuf **pb, u16_t protocol) in mppe_compress() 268 void mppe_decomp_reset(ppp_pcb *pcb, ppp_mppe_state *state) in mppe_decomp_reset() 279 mppe_decompress(ppp_pcb *pcb, ppp_mppe_state *state, struct pbuf **pb) in mppe_decompress()
|