Changeset 30366 in vbox for trunk/src/VBox/Devices/Network/slirp/ip_icmp.c
- Timestamp:
- Jun 22, 2010 12:15:11 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 62958
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/slirp/ip_icmp.c
r30363 r30366 446 446 * fail of processing it's ICMP packets 447 447 */ 448 m_free (pData, m);448 m_freem(pData, m); 449 449 return; 450 450 } … … 518 518 * MUST NOT reply to a multicast/broadcast MAC address. 519 519 * MUST reply to only the first fragment. 520 */ 521 /* 520 * 522 521 * Send ICMP_UNREACH back to the source regarding msrc. 523 * mbuf *msrc is used as a template, but is NOT m_free()'d.524 522 * It is reported as the bad ip packet. The header should 525 523 * be fully correct and in host byte order. … … 527 525 * packet. The maximum payload is 576-20(ip hdr)-8(icmp hdr)=548 528 526 * 529 * @note This function will free msrc!527 * @note This function will NOT free msrc! 530 528 */ 531 529
Note:
See TracChangeset
for help on using the changeset viewer.