NDIS_802_11_WEP_STATUS
This enumeration defines the Wireless Equivalent Privacy (WEP) implementation status for a particular 802.11 NIC.
typedef enum _NDIS_802_11_WEP_STATUS {
Ndis802_11WEPEnabled,
Ndis802_11WEPDisabled,
Ndis802_11WEPKeyAbsent,
Ndis802_11WEPNotSupported,
} NDIS_802_11_WEP_STATUS, *PNDIS_802_11_WEP_STATUS;
Elements
- Ndis802_11WEPEnabled
Indicates that WEP is enabled. - Ndis802_11WEPDisabled
Indicates that WEP is disabled. - Ndis802_11WEPKeyAbsent
Indicates that the WEP key is absent. - Ndis802_11WEPNotSupported
Indicates that the WEP key is not supported.
Remarks
OID_802_11_WEP_STATUS uses this enumeration to define WEP status.
When set, the object identifier requests the miniport driver to set the NIC 802.11 WEP status to enabled or disabled. The NIC must have the WEP key for MPDU transmission with encryption before it can set the WEP status. If the NIC cannot set the WEP status, the miniport driver should return an NDIS_STATUS value of NDIS_STATUS_NOT_ACCEPTED.
When queried, the object identifier requests the miniport driver to return its NIC 802.11 WEP status indication. In response to this query, the miniport driver can indicate that WEP status is enabled or disabled, that the WEP key is absent, or that WEP is not supported:
- A response indicating that WEP is enabled or disabled implies that the WEP key is available for the NIC to encrypt data. In other words, the WEP key is available for MPDU transmission with encryption.
- A response indicating that WEP is not supported implies that the NIC does not support the desired WEP. In other words, the NIC is not capable of encrypting data and WEP cannot be enabled or disabled.
- A response indicating that the WEP key is absent implies that the WEP key is not available for the NIC to encrypt data and, therefore, that WEP cannot be enabled or disabled. This implies that, while one or more WEP keys may be available, the NIC does not have a WEP key for MPDU transmission with encryption.
Requirements
OS Versions: Windows CE .NET 4.0 and later.
Header: Ntddndis.h.
See Also
Last updated on Tuesday, May 18, 2004
© 1992-2003 Microsoft Corporation. All rights reserved.