tcp_seg::next is only used within LwIP.
 
Symbols
loading...
Files
loading...

tcp_seg::next field

Syntax

struct tcp_seg *next;

References

LocationReferrerText
tcp_priv.h:254
struct tcp_seg *next; /* used when putting segments on a queue */
tcp.c:1611tcp_segs_free()
struct tcp_seg *next = seg->next;
tcp_in.c:408tcp_input()
inseg.next = NULL;
tcp_in.c:885tcp_process()
pcb->unsent = rseg->next;
tcp_in.c:887tcp_process()
pcb->unacked = rseg->next;
tcp_in.c:1106tcp_free_acked_segments()
tcp_out.c:174tcp_create_segment()
seg->next = NULL;
tcp_out.c:481tcp_write()
for (last_unsent = pcb->unsent; last_unsent->next != NULL;
tcp_out.c:482tcp_write()
last_unsent = last_unsent->next);
tcp_out.c:684tcp_write()
prev_seg->next = seg;
tcp_out.c:773tcp_write()
last_unsent->next = queue;
tcp_out.c:969tcp_split_unsent_seg()
seg->next = useg->next;
tcp_out.c:970tcp_split_unsent_seg()
useg->next = seg;
tcp_out.c:975tcp_split_unsent_seg()
if (seg->next == NULL) {
tcp_out.c:1008tcp_send_fin()
for (last_unsent = pcb->unsent; last_unsent->next != NULL;
tcp_out.c:1009tcp_send_fin()
last_unsent = last_unsent->next);
tcp_out.c:1104tcp_enqueue_flags()
for (useg = pcb->unsent; useg->next != NULL; useg = useg->next);
tcp_out.c:1105tcp_enqueue_flags()
useg->next = seg;
tcp_out.c:1329tcp_output()
for (; useg->next != NULL; useg = useg->next);
tcp_out.c:1343tcp_output()
if ((tcp_do_output_nagle(pcb) == 0) &&
tcp_out.c:1369tcp_output()
pcb->unsent = seg->next;
tcp_out.c:1379tcp_output()
seg->next = NULL;
tcp_out.c:1394tcp_output()
cur_seg = &((*cur_seg)->next );
tcp_out.c:1396tcp_output()
seg->next = (*cur_seg);
tcp_out.c:1400tcp_output()
useg->next = seg;
tcp_out.c:1401tcp_output()
useg = useg->next;
tcp_out.c:1645tcp_rexmit_rto_prepare()
for (seg = pcb->unacked; seg->next != NULL; seg = seg->next) {
tcp_out.c:1656tcp_rexmit_rto_prepare()
seg->next = pcb->unsent;
tcp_out.c:1746tcp_rexmit()
pcb->unacked = seg->next;
tcp_out.c:1751tcp_rexmit()
cur_seg = &((*cur_seg)->next );
tcp_out.c:1753tcp_rexmit()
seg->next = *cur_seg;
tcp_out.c:1756tcp_rexmit()
if (seg->next == NULL) {