// netreceivescaling.h
typedef enum _NET_ADAPTER_RECEIVE_SCALING_UNHASHED_TARGET_TYPE {
NetAdapterReceiveScalingUnhashedTargetTypeUnspecified = 0,
NetAdapterReceiveScalingUnhashedTargetTypeHashIndex = 1
} NET_ADAPTER_RECEIVE_SCALING_UNHASHED_TARGET_TYPE;
View the official Windows Driver Kit DDI referenceNo description available.
The NET_ADAPTER_RECEIVE_SCALING_UNHASHED_TARGET_TYPE enumeration specifies how a net adapter handles unhashed receive side scaling (RSS) frames.
NetAdapterReceiveScalingUnhashedTargetTypeUnspecified:0Indicates that the device does not distribute unhashed frames to a specific hash index.
NetAdapterReceiveScalingUnhashedTargetTypeHashIndex:1Indicates that unhashed frames are delivered to the queue at the specified hash index. This requires the caller to specify the UnhashedTargetIndex member of the NET_ADAPTER_RECEIVE_SCALING_CAPABILITIES structure with the hash index if the hash index is non-zero.
NetAdapterCx Receive Side Scaling