// extension.h
typedef enum _NET_EXTENSION_TYPE {
NetExtensionTypePacket = 1,
NetExtensionTypeFragment = 2,
NetExtensionTypeBuffer
} NET_EXTENSION_TYPE;
View the official Windows Driver Kit DDI referenceNo description available.
The NET_EXTENSION_TYPE enumeration specifies the type of extension that a client driver is querying.
NetExtensionTypePacket:1The extension is a NET_PACKET extension.
NetExtensionTypeFragment:2The extension is a NET_FRAGMENT extension.
NetExtensionTypeBufferReserved for system use.
Client drivers pass this enumeration as a value to NET_EXTENSION_QUERY_INIT to differentiate between packet extensions and fragment extension queries during packet queue creation.
Packet descriptors and extensions