// checksumtypes.h
typedef enum _NET_PACKET_RX_CHECKSUM_EVALUATION {
NetPacketRxChecksumEvaluationNotChecked = 0,
NetPacketRxChecksumEvaluationValid = 1,
NetPacketRxChecksumEvaluationInvalid = 2
} NET_PACKET_RX_CHECKSUM_EVALUATION;
View the official Windows Driver Kit DDI referenceNo description available.
The NET_PACKET_RX_CHECKSUM_EVALUATION enumeration specifies checksum evaluation flags for a NET_PACKET_CHECKSUM structure during packet reception.
NetPacketRxChecksumEvaluationNotChecked:0The default value for this enumeration. Indicates that the checksum will be validated in software further up in the networking stack.
NetPacketRxChecksumEvaluationValid:1Indicates the hardware determined that the checksum value is correct.
NetPacketRxChecksumEvaluationInvalid:2Indicates the hardware determined that the checksum value is incorrect.