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