Commit ec8e1df8 authored by Bruno Jesus's avatar Bruno Jesus Committed by Alexandre Julliard

iphlpapi/tests: Improve IcmpSendEcho trace.

parent d6d703b5
......@@ -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
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment