/[lwip]/lwip/src/netif/loopif.c
ViewVC logotype

Diff of /lwip/src/netif/loopif.c

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

revision 1.1.1.1 by likewise, Sat Oct 19 13:00:17 2002 UTC revision 1.2 by jani, Wed Dec 18 10:40:02 2002 UTC
# Line 55  loopif_output(struct netif *netif, struc Line 55  loopif_output(struct netif *netif, struc
55      ptr = r->payload;      ptr = r->payload;
56            
57      for(q = p; q != NULL; q = q->next) {      for(q = p; q != NULL; q = q->next) {
58        bcopy(q->payload, ptr, q->len);        memcpy(ptr, q->payload, q->len);
59        ptr += q->len;        ptr += q->len;
60      }      }
61      netif->input(r, netif);      netif->input(r, netif);

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