Changeset 15590 in vbox for trunk/src/VBox/Devices/Network/slirp
- Timestamp:
- Dec 16, 2008 2:38:07 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/slirp/socket.c
r15580 r15590 804 804 icp = (struct icmp *)((char *)ip + hlen); 805 805 806 Log Rel(("ICMP:received msg(t:%d, c:%d)\n", icp->icmp_type, icp->icmp_code));806 Log(("ICMP:received msg(t:%d, c:%d)\n", icp->icmp_type, icp->icmp_code)); 807 807 if ( icp->icmp_type != ICMP_ECHOREPLY 808 808 && icp->icmp_type != ICMP_TIMXCEED … … 827 827 if (icm == NULL) 828 828 { 829 Log Rel(("NAT: Can't find the corresponding packet for the received ICMP\n"));829 Log(("NAT: Can't find the corresponding packet for the received ICMP\n")); 830 830 return; 831 831 } … … 961 961 icm = icmp_find_original_mbuf(pData, ip_broken); 962 962 if (icm == NULL) { 963 Log Rel(("ICMP: can't find original package (first double word %x)\n", *(uint32_t *)ip_broken));963 Log(("ICMP: can't find original package (first double word %x)\n", *(uint32_t *)ip_broken)); 964 964 return; 965 965 } … … 976 976 break; 977 977 default: 978 Log Rel(("ICMP(default): message with Status: %x was received from %x\n", icr[i].Status, icr[i].Address));978 Log(("ICMP(default): message with Status: %x was received from %x\n", icr[i].Status, icr[i].Address)); 979 979 break; 980 980 }
Note:
See TracChangeset
for help on using the changeset viewer.