2 * EAP-TLV definitions (draft-josefsson-pppext-eap-tls-eap-10.txt)
3 * Copyright (c) 2004-2008, Jouni Malinen <j@w1.fi>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
9 * Alternatively, this software may be distributed under the terms of BSD
12 * See README and COPYING for more details.
15 #ifndef EAP_TLV_COMMON_H
16 #define EAP_TLV_COMMON_H
18 /* EAP-TLV TLVs (draft-josefsson-ppext-eap-tls-eap-10.txt) */
19 #define EAP_TLV_RESULT_TLV 3 /* Acknowledged Result */
20 #define EAP_TLV_NAK_TLV 4
21 #define EAP_TLV_ERROR_CODE_TLV 5
22 #define EAP_TLV_CONNECTION_BINDING_TLV 6
23 #define EAP_TLV_VENDOR_SPECIFIC_TLV 7
24 #define EAP_TLV_URI_TLV 8
25 #define EAP_TLV_EAP_PAYLOAD_TLV 9
26 #define EAP_TLV_INTERMEDIATE_RESULT_TLV 10
27 #define EAP_TLV_PAC_TLV 11 /* RFC 5422, Section 4.2 */
28 #define EAP_TLV_CRYPTO_BINDING_TLV 12
29 #define EAP_TLV_CALLING_STATION_ID_TLV 13
30 #define EAP_TLV_CALLED_STATION_ID_TLV 14
31 #define EAP_TLV_NAS_PORT_TYPE_TLV 15
32 #define EAP_TLV_SERVER_IDENTIFIER_TLV 16
33 #define EAP_TLV_IDENTITY_TYPE_TLV 17
34 #define EAP_TLV_SERVER_TRUSTED_ROOT_TLV 18
35 #define EAP_TLV_REQUEST_ACTION_TLV 19
36 #define EAP_TLV_PKCS7_TLV 20
38 #define EAP_TLV_RESULT_SUCCESS 1
39 #define EAP_TLV_RESULT_FAILURE 2
41 #define EAP_TLV_TYPE_MANDATORY 0x8000
42 #define EAP_TLV_TYPE_MASK 0x3fff
53 struct eap_tlv_nak_tlv
{
60 struct eap_tlv_result_tlv
{
66 /* RFC 4851, Section 4.2.7 - Intermediate-Result TLV */
67 struct eap_tlv_intermediate_result_tlv
{
71 /* Followed by optional TLVs */
74 /* RFC 4851, Section 4.2.8 - Crypto-Binding TLV */
75 struct eap_tlv_crypto_binding_tlv
{
86 struct eap_tlv_pac_ack_tlv
{
94 /* RFC 4851, Section 4.2.9 - Request-Action TLV */
95 struct eap_tlv_request_action_tlv
{
101 /* RFC 5422, Section 4.2.6 - PAC-Type TLV */
102 struct eap_tlv_pac_type_tlv
{
103 be16 tlv_type
; /* PAC_TYPE_PAC_TYPE */
110 #endif /* _MSC_VER */
112 #define EAP_TLV_CRYPTO_BINDING_SUBTYPE_REQUEST 0
113 #define EAP_TLV_CRYPTO_BINDING_SUBTYPE_RESPONSE 1
115 #define EAP_TLV_ACTION_PROCESS_TLV 1
116 #define EAP_TLV_ACTION_NEGOTIATE_EAP 2
118 #endif /* EAP_TLV_COMMON_H */