EapCode enumeration (eapmethodtypes.h)

The EapCode enumeration defines the set of EAP packet types.

Syntax

typedef enum tagEapCode {
  EapCodeMinimum = 1,
  EapCodeRequest = 1,
  EapCodeResponse,
  EapCodeSuccess,
  EapCodeFailure,
  EapCodeMaximum
} EapCode;

Constants

 
EapCodeMinimum
Value: 1
The lowest possible value for an EAP packet type code.
EapCodeRequest
Value: 1
A request packet sent by the authenticator to the supplicant.
EapCodeResponse
A response packet sent by the supplicant to the authenticator.
EapCodeSuccess
A successful authentication attempt.
EapCodeFailure
A failed authentication attempt.
EapCodeMaximum
The highest possible value for an EAP packet type code.

Requirements

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

See also

EapPacket