mirror of
https://github.com/reactos/reactos.git
synced 2025-06-19 22:55:21 +00:00
[PING][TRACERT] Fully support Win64 ICMP_ECHO_REPLY32 (#2427)
This commit is contained in:
parent
2712762538
commit
8532c3b6f6
2 changed files with 21 additions and 0 deletions
|
@ -296,8 +296,13 @@ DecodeResponse(
|
|||
}
|
||||
else
|
||||
{
|
||||
#ifdef _WIN64
|
||||
PICMP_ECHO_REPLY32 EchoReplyV4;
|
||||
EchoReplyV4 = (PICMP_ECHO_REPLY32)ReplyBuffer;
|
||||
#else
|
||||
PICMP_ECHO_REPLY EchoReplyV4;
|
||||
EchoReplyV4 = (PICMP_ECHO_REPLY)ReplyBuffer;
|
||||
#endif
|
||||
Status = EchoReplyV4->Status;
|
||||
RoundTripTime = EchoReplyV4->RoundTripTime;
|
||||
AddressInfo = &EchoReplyV4->Address;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue