Searched refs:tcp_seg (Results 1 – 9 of 9) sorted by relevance
/third_party/lwip/src/include/lwip/priv/ |
D | tcp_priv.h | 253 struct tcp_seg { struct 254 struct tcp_seg *next; /* used when putting segments on a queue */ argument 444 void tcp_segs_free(struct tcp_seg *seg); 445 void tcp_seg_free(struct tcp_seg *seg); 446 struct tcp_seg *tcp_seg_copy(struct tcp_seg *seg); 465 void tcp_rexmit_seg(struct tcp_pcb *pcb, struct tcp_seg *seg);
|
D | memp_std.h | 52 LWIP_MEMPOOL(TCP_SEG, MEMP_NUM_TCP_SEG, sizeof(struct tcp_seg), "TCP_SEG")
|
/third_party/lwip/src/core/ |
D | tcp_in.c | 74 static struct tcp_seg inseg; 790 struct tcp_seg *rseg; 1052 tcp_oos_insert_segment(struct tcp_seg *cseg, struct tcp_seg *next) 1054 struct tcp_seg *old_seg; 1088 static struct tcp_seg * 1089 tcp_free_acked_segments(struct tcp_pcb *pcb, struct tcp_seg *seg_list, const char *dbg_list_name, 1090 struct tcp_seg *dbg_other_seg_list) 1092 struct tcp_seg *next; 1499 struct tcp_seg *old_ooseq = pcb->ooseq; 1504 struct tcp_seg *next = pcb->ooseq; [all …]
|
D | tcp_out.c | 128 static err_t tcp_output_segment(struct tcp_seg *seg, struct tcp_pcb *pcb, struct netif *netif); 157 static struct tcp_seg * 160 struct tcp_seg *seg; in tcp_create_segment() 168 if ((seg = (struct tcp_seg *)memp_malloc(MEMP_TCP_SEG)) == NULL) { in tcp_create_segment() 393 struct tcp_seg *last_unsent = NULL, *seg = NULL, *prev_seg = NULL, *queue = NULL; in tcp_write() 829 struct tcp_seg *seg = NULL, *useg = NULL; in tcp_split_unsent_seg() 1008 struct tcp_seg *last_unsent; in tcp_send_fin() 1036 struct tcp_seg *seg; in tcp_enqueue_flags() 1104 struct tcp_seg *useg; in tcp_enqueue_flags() 1240 struct tcp_seg *seg, *useg; in tcp_output() [all …]
|
D | tcp.c | 1609 tcp_segs_free(struct tcp_seg *seg) in tcp_segs_free() 1612 struct tcp_seg *next = seg->next; in tcp_segs_free() 1624 tcp_seg_free(struct tcp_seg *seg) in tcp_seg_free() 1662 struct tcp_seg * 1663 tcp_seg_copy(struct tcp_seg *seg) in tcp_seg_copy() 1665 struct tcp_seg *cseg; in tcp_seg_copy() 1669 cseg = (struct tcp_seg *)memp_malloc(MEMP_TCP_SEG); in tcp_seg_copy() 1673 SMEMCPY((u8_t *)cseg, (const u8_t *)seg, sizeof(struct tcp_seg)); in tcp_seg_copy()
|
/third_party/lwip/src/include/lwip/ |
D | tcp.h | 338 struct tcp_seg *unsent; /* Unsent (queued) segments. */ 339 struct tcp_seg *unacked; /* Sent but unacknowledged segments. */ 341 struct tcp_seg *ooseq; /* Received out of sequence segments. */
|
/third_party/lwip/test/unit/tcp/ |
D | test_tcp_oos.c | 31 struct tcp_seg* seg = pcb->ooseq; in tcp_oos_count() 44 struct tcp_seg* seg = pcb->ooseq; in tcp_oos_pbuf_count() 63 struct tcp_seg* seg = pcb->ooseq; in tcp_oos_seg_seqno() 87 struct tcp_seg* seg = pcb->ooseq; in tcp_oos_seg_tcplen() 110 struct tcp_seg* seg = pcb->ooseq; in tcp_oos_tcplen()
|
D | test_tcp.c | 613 check_seqnos(struct tcp_seg *segs, int num_expected, u32_t *seqnos_expected) in check_seqnos() 615 struct tcp_seg *s = segs; in check_seqnos()
|
/third_party/lwip/ |
D | CHANGELOG | 1518 * tcp_impl.h, tcp_in.c, tcp_out.c: Removed 'dataptr' from 'struct tcp_seg' and 4302 * The ->len field in the tcp_seg structure now counts the actual
|