// nblaccessors.h
#define NET_BUFFER_CHECKSUM_BIAS(_NB) ((_NB)->ChecksumBias)
View the official Windows Driver Kit DDI referenceNo description available.
NET_BUFFER_CHECKSUM_BIAS is a macro that NDIS drivers use to get the ChecksumBias member of a NET_BUFFER structure.
#define NET_BUFFER_CHECKSUM_BIAS(_NB) ((_NB)->ChecksumBias)
_NBA pointer to a NET_BUFFER structure.
NET_BUFFER_CHECKSUM_BIAS returns the value of the ChecksumBias member of the indicated NET_BUFFER structure.
The return value specifies the number of bytes of data to skip over at the beginning of the data buffer when computing a checksum. This value is used by the TCP/IP protocol.