Home
last modified time | relevance | path

Searched refs:tcp_seg (Results 1 – 7 of 7) sorted by relevance

/external/syslinux/core/lwip/src/include/lwip/
Dtcp_impl.h278 struct tcp_seg { struct
279 struct tcp_seg *next; /* used when putting segements on a queue */ argument
404 void tcp_segs_free(struct tcp_seg *seg);
405 void tcp_seg_free(struct tcp_seg *seg);
406 struct tcp_seg *tcp_seg_copy(struct tcp_seg *seg);
427 void tcp_rexmit_seg(struct tcp_pcb *pcb, struct tcp_seg *seg);
Dtcp.h240 struct tcp_seg *unsent; /* Unsent (queued) segments. */
241 struct tcp_seg *unacked; /* Sent but unacknowledged segments. */
243 struct tcp_seg *ooseq; /* Received out of sequence segments. */
Dmemp_std.h44 LWIP_MEMPOOL(TCP_SEG, MEMP_NUM_TCP_SEG, sizeof(struct tcp_seg), "TCP_SEG")
/external/syslinux/core/lwip/src/core/
Dtcp_out.c79 static void tcp_output_segment(struct tcp_seg *seg, struct tcp_pcb *pcb);
127 struct tcp_seg *last_unsent; in tcp_send_fin()
155 static struct tcp_seg *
158 struct tcp_seg *seg; in tcp_create_segment()
161 if ((seg = (struct tcp_seg *)memp_malloc(MEMP_TCP_SEG)) == NULL) { in tcp_create_segment()
354 struct tcp_seg *last_unsent = NULL, *seg = NULL, *prev_seg = NULL, *queue = NULL; in tcp_write()
718 struct tcp_seg *seg; in tcp_enqueue_flags()
784 struct tcp_seg *useg; in tcp_enqueue_flags()
894 struct tcp_seg *seg, *useg; in tcp_output()
1002 struct tcp_seg **cur_seg = &(pcb->unacked); in tcp_output()
[all …]
Dtcp.c1031 tcp_segs_free(struct tcp_seg *seg) in tcp_segs_free()
1034 struct tcp_seg *next = seg->next; in tcp_segs_free()
1046 tcp_seg_free(struct tcp_seg *seg) in tcp_seg_free()
1079 struct tcp_seg *
1080 tcp_seg_copy(struct tcp_seg *seg) in tcp_seg_copy()
1082 struct tcp_seg *cseg; in tcp_seg_copy()
1084 cseg = (struct tcp_seg *)memp_malloc(MEMP_TCP_SEG); in tcp_seg_copy()
1088 SMEMCPY((u8_t *)cseg, (const u8_t *)seg, sizeof(struct tcp_seg)); in tcp_seg_copy()
Dtcp_in.c62 static struct tcp_seg inseg;
574 struct tcp_seg *rseg; in tcp_process()
797 tcp_oos_insert_segment(struct tcp_seg *cseg, struct tcp_seg *next) in tcp_oos_insert_segment()
799 struct tcp_seg *old_seg; in tcp_oos_insert_segment()
846 struct tcp_seg *next; in tcp_receive()
848 struct tcp_seg *prev, *cseg; in tcp_receive()
1225 struct tcp_seg *old_ooseq = pcb->ooseq; in tcp_receive()
/external/syslinux/core/lwip/
DCHANGELOG20 * tcp_impl.h, tcp_in.c, tcp_out.c: Removed 'dataptr' from 'struct tcp_seg' and
2804 * The ->len field in the tcp_seg structure now counts the actual