Changeset 53303 in vbox for trunk/src/VBox/Devices/Network/slirp
- Timestamp:
- Nov 11, 2014 2:19:29 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/slirp/ip_icmp.c
r53298 r53303 412 412 || CTL_CHECK(dst, CTL_TFTP)) 413 413 { 414 icp->icmp_type = ICMP_ECHOREPLY; 414 uint8_t echo_reply = ICMP_ECHOREPLY; 415 m_copyback(pData, m, hlen + RT_OFFSETOF(struct icmp, icmp_type), 416 sizeof(echo_reply), (caddr_t)&echo_reply); 415 417 ip->ip_dst.s_addr = ip->ip_src.s_addr; 416 418 ip->ip_src.s_addr = dst;
Note:
See TracChangeset
for help on using the changeset viewer.