2 * Extensible Authentication Protocol (EAP) definitions
5 * RFC 2284: PPP Extensible Authentication Protocol (EAP)
7 * Copyright (C) 2002 Broadcom Corporation
14 /* EAP packet format */
16 unsigned char code
; /* EAP code */
17 unsigned char id
; /* Current request ID */
18 unsigned short length
; /* Length including header */
19 unsigned char type
; /* EAP type (optional) */
20 unsigned char data
[1]; /* Type data (optional) */
23 #define EAP_HEADER_LEN 4
27 #define EAP_RESPONSE 2
32 #define EAP_IDENTITY 1
33 #define EAP_NOTIFICATION 2
39 #define EAP_EXPANDED 254
40 #define BCM_EAP_SES 10
41 #define BCM_EAP_EXP_LEN 12 /* EAP_LEN 5 + 3 bytes for SMI ID + 4 bytes for ven type */
42 #define BCM_SMI_ID 0x113d
This page took 0.050308 seconds and 5 git commands to generate.