Searched refs:tpcb (Results 1 – 3 of 3) sorted by relevance
| /lib/liblwip/src/include/lwip/ |
| D | tcp_impl.h | 84 #define tcp_do_output_nagle(tpcb) ((((tpcb)->unacked == NULL) || \ argument 85 ((tpcb)->flags & (TF_NODELAY | TF_INFR)) || \ 86 (((tpcb)->unsent != NULL) && (((tpcb)->unsent->next != NULL) || \ 87 ((tpcb)->unsent->len >= (tpcb)->mss))) || \ 88 … ((tcp_sndbuf(tpcb) == 0) || (tcp_sndqueuelen(tpcb) >= TCP_SND_QUEUELEN)) \ 90 #define tcp_output_nagle(tpcb) (tcp_do_output_nagle(tpcb) ? tcp_output(tpcb) : ERR_OK) argument
|
| D | tcp.h | 72 typedef err_t (*tcp_recv_fn)(void *arg, struct tcp_pcb *tpcb, 86 typedef err_t (*tcp_sent_fn)(void *arg, struct tcp_pcb *tpcb, 98 typedef err_t (*tcp_poll_fn)(void *arg, struct tcp_pcb *tpcb); 124 typedef err_t (*tcp_connected_fn)(void *arg, struct tcp_pcb *tpcb, err_t err);
|
| /lib/liblwip/doc/ |
| D | rawapi.txt | 162 struct tcp_pcb *tpcb, 215 err_t (* sent)(void *arg, struct tcp_pcb *tpcb, 233 err_t (* recv)(void *arg, struct tcp_pcb *tpcb, 261 err_t (* poll)(void *arg, struct tcp_pcb *tpcb),
|