ONEX_AUTH_STATUS enumeration (dot1x.h)

The ONEX_AUTH_STATUS enumerated type specifies the possible values for the 802.1X authentication status.

Syntax

typedef enum _ONEX_AUTH_STATUS {
  OneXAuthNotStarted,
  OneXAuthInProgress,
  OneXAuthNoAuthenticatorFound,
  OneXAuthSuccess,
  OneXAuthFailure,
  OneXAuthInvalid
} ONEX_AUTH_STATUS, PONEX_AUTH_STATUS;

Constants

 
OneXAuthNotStarted
802.1X authentication was not started.
OneXAuthInProgress
802.1X authentication is in progress.
OneXAuthNoAuthenticatorFound
No 802.1X authenticator was found. The 802.1X authentication was attempted, but no 802.1X peer was found. In this case, either the network does not support or is not configured to support the 802.1X standard.
OneXAuthSuccess
802.1X authentication was successful.
OneXAuthFailure
802.1X authentication was a failure.
OneXAuthInvalid
Indicates the end of the range that specifies the possible values for 802.1X authentication status.

Remarks

The ONEX_AUTH_STATUS enumerated type is used by the 802.1X module, a new wireless configuration component supported on Windows Vista and later.

The ONEX_AUTH_STATUS specifies the possible values for the 802.1X authentication status. A value from this enumeration is returned when the NotificationSource member of the WLAN_NOTIFICATION_DATA structure is WLAN_NOTIFICATION_SOURCE_ONEX and the NotificationCode member of the WLAN_NOTIFICATION_DATA structure for received notifications is OneXNotificationTypeResultUpdate. For this notification, the pData member of the WLAN_NOTIFICATION_DATA structure points to an ONEX_RESULT_UPDATE_DATA structure that contains a ONEX_STATUS structure member in the oneXStatus structure member. The ONEX_STATUS structure contains a ONEX_AUTH_STATUS enumeration value in the authStatus member.

Requirements

Requirement Value
Minimum supported client Windows Vista [desktop apps only]
Minimum supported server Windows Server 2008 [desktop apps only]
Header dot1x.h

See also

About the ACM Architecture

ONEX_RESULT_UPDATE_DATA

ONEX_STATUS

WLAN_NOTIFICATION_DATA

WlanRegisterNotification