EapPacket structure (eapmethodtypes.h)

The EapPacket structure contains a packet of opaque data sent during an EAP authentication session.

Syntax

typedef struct tagEapPacket {
  BYTE Code;
  BYTE Id;
  BYTE Length[2];
  BYTE Data[1];
} EapPacket;

Members

Code

An EapCode enumeration value that identifies the packet type.

Id

The packet ID number.

Length[2]

The length of the entire packet

Data[1]

The packet message data. This opaque data block continues after the first byte for Length - 1 bytes.

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

Common EAPHost API Structures

EapCode