From ec8e1df8a9f9af4016e1173a0ec4993543f7ed7c Mon Sep 17 00:00:00 2001 From: Bruno Jesus <00cpxxx@gmail.com> Date: Thu, 14 May 2015 23:27:47 -0300 Subject: [PATCH] iphlpapi/tests: Improve IcmpSendEcho trace. --- dlls/iphlpapi/tests/iphlpapi.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/dlls/iphlpapi/tests/iphlpapi.c b/dlls/iphlpapi/tests/iphlpapi.c index 847ba49e954..bc70b51bc7f 100644 --- a/dlls/iphlpapi/tests/iphlpapi.c +++ b/dlls/iphlpapi/tests/iphlpapi.c @@ -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 { -- 2.11.4.GIT