// iscsiprf.h
typedef struct _MSiSCSI_RequestTimeStatistics {
WCHAR iSCSIName[223 + 1];
USHORT CID;
ULONGLONG USID;
ULONGLONG UniqueAdapterId;
ULONG MaximumProcessingTime;
ULONG AverageProcessingTime;
} MSiSCSI_RequestTimeStatistics, *PMSiSCSI_RequestTimeStatistics;
View the official Windows Driver Kit DDI referenceNo description available.
The MSiSCSI_RequestTimeStatistics structure is used by iSCSI initiators to report request time statistics.
iSCSINameThe iSCSI target name.
CIDThe iSCSI connection identifier (ID) for this connection instance. This ID is an internal value that the iSCSI protocol uses to identify the connection. Do not use this ID. Application software should use the connection identifier that the LoginToTarget and AddConnectionToSession methods return in the UniqueConnectionId parameter.
USIDThe iSCSI session ID for this connection instance. This ID is an internal value that the iSCSI protocol uses to identify the session. Do not use this ID. Application software should use the session identifier that the LoginToTarget and AddConnectionToSession methods return in the UniqueSessionId parameter.
UniqueAdapterIdA 64-bit integer that uniquely identifies an HBA initiator and a loaded instance of a storage miniport driver that manages the HBA. The initiator should use the address of the adapter extension or another address that the device driver owns to construct this identifier (ID). The initiator reports this value in the UniqueAdapterId member of the MSiSCSI_HBAInformation structure.
MaximumProcessingTimeThe maximum time taken to process a request over this connection.
AverageProcessingTimeThe average time taken to process a request over this connection.
It is optional that you implement this class.