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

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

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

revision 1.9 by kieranm, Tue Dec 3 10:45:47 2002 UTC revision 1.10 by jani, Tue Dec 17 09:41:16 2002 UTC
# Line 212  tcp_input(struct pbuf *p, struct netif * Line 212  tcp_input(struct pbuf *p, struct netif *
212             arrivals). */             arrivals). */
213          if(prev != NULL) {          if(prev != NULL) {
214            ((struct tcp_pcb_listen *)prev)->next = lpcb->next;            ((struct tcp_pcb_listen *)prev)->next = lpcb->next;
215            // our successor is the remainder of the listening list            /* our successor is the remainder of the listening list */
216            lpcb->next = tcp_listen_pcbs;            lpcb->next = tcp_listen_pcbs;
217            // put this listening pcb at the head of the listening list            /* put this listening pcb at the head of the listening list */
218            tcp_listen_pcbs = lpcb;            tcp_listen_pcbs = lpcb;
219          }          }
220    

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10

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