Changeset 55994 in vbox for trunk/src/VBox/Devices/Network/lwip-new
- Timestamp:
- May 21, 2015 5:09:32 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 100503
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/lwip-new/src/core/ipv4/ip4.c
r50185 r55994 879 879 if (ip_addr_cmp(dest, &netif->ip_addr)) { 880 880 /* Packet to self, enqueue it for loopback */ 881 LWIP_DEBUGF(IP_DEBUG, ("netif_loop_output() "));881 LWIP_DEBUGF(IP_DEBUG, ("netif_loop_output()\n")); 882 882 return netif_loop_output(netif, p); 883 883 } … … 895 895 #endif /* IP_FRAG */ 896 896 897 LWIP_DEBUGF(IP_DEBUG, ("netif->output() "));897 LWIP_DEBUGF(IP_DEBUG, ("netif->output()\n")); 898 898 return netif->output(netif, p, dest); 899 899 }
Note:
See TracChangeset
for help on using the changeset viewer.