// iscsimgt.h
typedef struct _PingIPAddress_IN {
ULONG RequestCount;
ULONG RequestSize;
ULONG Timeout;
ISCSI_IP_Address Address;
} PingIPAddress_IN, *PPingIPAddress_IN;
View the official Windows Driver Kit DDI referenceNo description available.
The PingIPAddress_IN structure holds the input data for the PingIPAddress method.
RequestCountThe number of ping requests to be sent to the specified IP address.
RequestSizeThe size of each request (in bytes) to be sent.
TimeoutThe timeout (in milliseconds) for each ping request.
AddressThe IP address to which the ping request must be sent. The IP address is provided by the ISCSI_IP_Address structure.
We recommend that you implement this class.