// iscsiprf.h
typedef struct _MSiSCSI_NICPerformance {
ULONG BytesTransmitted;
ULONG BytesReceived;
ULONG PDUTransmitted;
ULONG PDUReceived;
} MSiSCSI_NICPerformance, *PMSiSCSI_NICPerformance;
View the official Windows Driver Kit DDI referenceNo description available.
The MSiSCSI_NICPerformance structure can be used by an iSCSI initiator to report statistics for a network interface card (NIC) port.
BytesTransmittedThe number of bytes that are transmitted through the Ethernet port.
BytesReceivedThe number of bytes that are received through the Ethernet port.
PDUTransmittedThe number of PDUs that are transmitted through the Ethernet port.
PDUReceivedThe number of PDUs that are received through the Ethernet port.
It is optional that you implement this class.
MSiSCSI_NICPerformance WMI Class