NET_PACKET_TX_CHECKSUM_ACTION enumeration (checksumtypes.h)

The NET_PACKET_TX_CHECKSUM_ACTION enumeration specifies checksum action flags for a NET_PACKET_CHECKSUM structure during packet transmission.

Syntax

typedef enum _NET_PACKET_TX_CHECKSUM_ACTION {
  NetPacketTxChecksumActionPassthrough = 0,
  NetPacketTxChecksumActionRequired = 2
} NET_PACKET_TX_CHECKSUM_ACTION;

Constants

 
NetPacketTxChecksumActionPassthrough
Value: 0
Indicates the client should not perform checksum calculation for this layer.
NetPacketTxChecksumActionRequired
Value: 2
Indicates the client should perform checksum calculation for this layer.

Requirements

Requirement Value
Header checksumtypes.h

See also

NET_PACKET_CHECKSUM