This structure is used by the
GetTripTime method to return the round-trip
times of an ICMP datagram.
typedef struct _ICMPTIME {
DWORD dwTripAverage;
DWORD dwTripMaximum;
DWORD dwTripMinimum;
DWORD dwTripTime;
} ICMPTIME, *LPICMPTIME;
Members
- dwTripAverage
- The average round-trip time in milliseconds for all datagrams
sent to the current host.
- dwTripMaximum
- The maximum round-trip time in milliseconds for all datagrams
sent to current host.
- dwTripMinimum
- The minimum round-trip time in milliseconds for all datagrams
sent to the current host.
- dwTripTime
- The current round-trip time in milliseconds for the last
datagram sent to the current host.
Requirements
Minimum Desktop Platform: Windows 7 Service Pack 1
Minimum Server Platform: Windows Server 2008 R2 Service Pack 1
Header File: cstools11.h
|