// windot11.h
typedef enum DOT11_DIRECTION {
DOT11_DIR_INBOUND = 1,
DOT11_DIR_OUTBOUND = 2,
DOT11_DIR_BOTH = 3
} DOT11_DIRECTION, *PDOT11_DIRECTION;
View the official Windows Driver Kit DDI referenceNo description available.
[!Important] WiFiCx is the new Wi-Fi driver model released in Windows 11. We recommend that you use WiFiCx to take advantage of the latest features. The WDI driver model is now in maintenance mode and will only receive high priority fixes.
The DOT11_DIRECTION enumeration specifies whether the 802.11 station uses a cipher key to decrypt received packets and/or encrypt transmitted packets.
DOT11_DIR_INBOUNDThe 802.11 station uses the cipher key to decrypt packets received from the access point (AP) or peer station.
DOT11_DIR_OUTBOUNDThe 802.11 station uses the cipher key to encrypt packets transmitted to the AP or peer station.
DOT11_DIR_BOTHThe 802.11 station uses the cipher key for packets received from or transmitted to the AP or peer station.
typedef enum DOT11_DIRECTION {
DOT11_DIR_INBOUND = 1,
DOT11_DIR_OUTBOUND = 2,
DOT11_DIR_BOTH = 3
} DOT11_DIRECTION, *PDOT11_DIRECTION;
DOT11_CIPHER_KEY_MAPPING_KEY_VALUE