/[lwip]/lwip/src/arch/unix/netif/unixif.c
ViewVC logotype

Diff of /lwip/src/arch/unix/netif/unixif.c

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

revision 1.1.1.1 by likewise, Sat Oct 19 13:00:52 2002 UTC revision 1.2 by jani, Wed Dec 18 12:49:02 2002 UTC
# Line 225  unixif_input_handler(void *data) Line 225  unixif_input_handler(void *data)
225        }        }
226        pbuf_realloc(p, len);        pbuf_realloc(p, len);
227  #ifdef LINK_STATS  #ifdef LINK_STATS
228        stats.link.recv++;        lwip_stats.link.recv++;
229  #endif /* LINK_STATS */  #endif /* LINK_STATS */
230        tcpdump(p);        tcpdump(p);
231        netif->input(p, netif);        netif->input(p, netif);
# Line 319  unixif_output(struct netif *netif, struc Line 319  unixif_output(struct netif *netif, struc
319                
320  #endif /* UNIXIF_DROP_FIRST */  #endif /* UNIXIF_DROP_FIRST */
321  #ifdef LINK_STATS  #ifdef LINK_STATS
322        stats.link.drop++;        lwip_stats.link.drop++;
323  #endif /* LINK_STATS */  #endif /* LINK_STATS */
324    
325      } else {      } else {
# Line 393  unixif_output_timeout(void *arg) Line 393  unixif_output_timeout(void *arg)
393    }    }
394    tcpdump(p);    tcpdump(p);
395  #ifdef LINK_STATS  #ifdef LINK_STATS
396    stats.link.xmit++;    lwip_stats.link.xmit++;
397  #endif /* LINK_STATS */  #endif /* LINK_STATS */
398    
399    free(data);    free(data);

Legend:
Removed from v.1.1.1.1  
changed lines
  Added in v.1.2

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