/[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.7 by jani, Thu Nov 14 12:20:37 2002 UTC revision 1.8 by likewise, Thu Nov 21 10:29:51 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
216            lpcb->next = tcp_listen_pcbs;            lpcb->next = tcp_listen_pcbs;
217              // 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.7  
changed lines
  Added in v.1.8

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