EAP_METHOD_AUTHENTICATOR_RESULT structure (eapauthenticatoractiondefine.h)

Contains authentication results returned by an EAP authenticator method.

Syntax

typedef struct _EAP_METHOD_AUTHENTICATOR_RESULT {
  BOOL           fIsSuccess;
  DWORD          dwFailureReason;
  EAP_ATTRIBUTES *pAuthAttribs;
} EAP_METHOD_AUTHENTICATOR_RESULT;

Members

fIsSuccess

If TRUE, the supplicant was successfully authenticated; if FALSE, it was not.

dwFailureReason

Contains a reason code if the supplicant could not be authenticated. Reason codes are generally expected to originate from winerror.h.

pAuthAttribs

A pointer to an EAP_ATTRIBUTES structure that contains the EAP attributes returned by the authentication session.

Requirements

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

See also

EAPHost Authenticator Method Structures