Lines Matching refs:tcp_pcb
89 - void tcp_arg(struct tcp_pcb *pcb, void *arg)
105 - struct tcp_pcb *tcp_new(void)
110 - err_t tcp_bind(struct tcp_pcb *pcb, ip_addr_t *ipaddr,
120 - struct tcp_pcb *tcp_listen(struct tcp_pcb *pcb)
138 - struct tcp_pcb *tcp_listen_with_backlog(struct tcp_pcb *pcb, u8_t backlog)
144 - void tcp_accepted(struct tcp_pcb *pcb)
153 - void tcp_accept(struct tcp_pcb *pcb,
154 err_t (* accept)(void *arg, struct tcp_pcb *newpcb,
160 - err_t tcp_connect(struct tcp_pcb *pcb, ip_addr_t *ipaddr,
162 struct tcp_pcb *tpcb,
189 - err_t tcp_write(struct tcp_pcb *pcb, const void *dataptr, u16_t len,
214 - void tcp_sent(struct tcp_pcb *pcb,
215 err_t (* sent)(void *arg, struct tcp_pcb *tpcb,
232 - void tcp_recv(struct tcp_pcb *pcb,
233 err_t (* recv)(void *arg, struct tcp_pcb *tpcb,
243 - void tcp_recved(struct tcp_pcb *pcb, u16_t len)
260 - void tcp_poll(struct tcp_pcb *pcb,
261 err_t (* poll)(void *arg, struct tcp_pcb *tpcb),
273 - err_t tcp_close(struct tcp_pcb *pcb)
283 - void tcp_abort(struct tcp_pcb *pcb)
298 - void tcp_err(struct tcp_pcb *pcb, void (* err)(void *arg,