// netreceivescaling.h
typedef enum _NET_ADAPTER_RECEIVE_SCALING_HASH_TYPE {
NetAdapterReceiveScalingHashTypeNone = 0x00000000,
NetAdapterReceiveScalingHashTypeToeplitz = 0x00000001
} NET_ADAPTER_RECEIVE_SCALING_HASH_TYPE;
View the official Windows Driver Kit DDI referenceNo description available.
The NET_ADAPTER_RECEIVE_SCALING_HASH_TYPE enumeration specifies the type of receive side scaling (RSS) hash function that a NIC should use to compute the hash values for incoming packets.
NetAdapterReceiveScalingHashTypeNone:0x00000000Unused for RSS-capable NIC client drivers.
NetAdapterReceiveScalingHashTypeToeplitz:0x00000001Indicates support for the Toeplitz hashing function.
Currently, NetAdapterReceiveScalingHashTypeToeplitz is the only hashing function available to NIC client drivers.
NetAdapterCx Receive Side Scaling