EAP_ATTRIBUTE structure (eaptypes.h)

The EAP_ATTRIBUTE structure contains an EAP attribute.

Syntax

typedef struct _EAP_ATTRIBUTE {
  EAP_ATTRIBUTE_TYPE eaType;
  DWORD              dwLength;
#if ...
  BYTE               *pValue;
#else
  BYTE               *pValue;
#endif
} EAP_ATTRIBUTE, EapAttribute;

Members

eaType

An EAP_ATTRIBUTE_TYPE enumeration value that describes the type of the EAP attribute value supplied in pValue.

dwLength

The size, in bytes, of pValue.

pValue

Pointer to a byte buffer that contains the data value of the attribute.

Requirements

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

See also

Common EAPHost API Structures

EAP_ATTRIBUTES