This structure is used by the
GetFirstHost and
GetNextHost methods to return the route of an
ICMP datagram.
typedef struct _ICMPTRACE
{
UINT nDistance;
DWORD dwHostAddress;
DWORD dwTripAverage;
DWORD dwTripMaximum;
DWORD dwTripMinimum;
} ICMPTRACE, *LPICMPTRACE;
Members
- nDistance
- The distance from the local host to the remote host for this
route.
- dwHostAddress
- An unsigned integer which specifies the IP address of the
remote host in network byte order.
- dwTripAverage
- The average round-trip time in milliseconds for all datagrams
sent to the specified host.
- dwTripMaximum
- The maximum round-trip time in milliseconds for all datagrams
sent to specified host.
- dwTripMinimum
- The minimum round-trip time in milliseconds for all datagrams
sent to the specified host.
- dwTripTime
- The current round-trip time in milliseconds for the last
datagram sent to the specified host.
Requirements
Minimum Desktop Platform: Windows 7 Service Pack 1
Minimum Server Platform: Windows Server 2008 R2 Service Pack 1
Header File: cstools11.h
|