iphlpapi/tests: Improve IcmpSendEcho trace.
This commit is contained in:
parent
d6d703b592
commit
ec8e1df8a9
|
@ -1043,7 +1043,15 @@ todo_wine
|
|||
if (ret)
|
||||
{
|
||||
PICMP_ECHO_REPLY pong = (PICMP_ECHO_REPLY) replydata;
|
||||
trace ("ping roundtrip: %u ms\n", pong->RoundTripTime);
|
||||
trace ("send addr : %s\n", ntoa(address));
|
||||
trace ("send size : %u\n", sizeof(senddata));
|
||||
trace ("reply addr : %s\n", ntoa(pong->Address));
|
||||
trace ("reply size : %u\n", replysz);
|
||||
trace ("roundtrip : %u ms\n", pong->RoundTripTime);
|
||||
trace ("status : %u\n", pong->Status);
|
||||
trace ("recv size : %u\n", pong->DataSize);
|
||||
trace ("ttl : %u\n", pong->Options.Ttl);
|
||||
trace ("flags : 0x%x\n", pong->Options.Flags);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue