/[lwip]/lwip/src/core/tcp_out.c
ViewVC logotype

Diff of /lwip/src/core/tcp_out.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.27.2.7 by jani, Fri Nov 14 12:20:27 2003 UTC revision 1.27.2.8 by likewise, Sat Nov 15 00:41:47 2003 UTC
# Line 133  tcp_enqueue(struct tcp_pcb *pcb, void *a Line 133  tcp_enqueue(struct tcp_pcb *pcb, void *a
133      pcb->unsent != NULL);      pcb->unsent != NULL);
134    }    }
135    
136    seg = NULL;    seg = useg = NULL;
137    seglen = 0;    seglen = 0;
138    
139    /* First, break up the data into segments and tuck them together in    /* First, break up the data into segments and tuck them together in
# Line 158  tcp_enqueue(struct tcp_pcb *pcb, void *a Line 158  tcp_enqueue(struct tcp_pcb *pcb, void *a
158      }      }
159      else {      else {
160        /* Attach the segment to the end of the queued segments. */        /* Attach the segment to the end of the queued segments. */
161          LWIP_ASSERT("useg != NULL", useg != NULL);
162        useg->next = seg;        useg->next = seg;
163        useg = seg;        useg = seg;
164      }      }

Legend:
Removed from v.1.27.2.7  
changed lines
  Added in v.1.27.2.8

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26