~ubuntu-branches/ubuntu/gutsy/wireshark/gutsy-security

« back to all changes in this revision

Viewing changes to epan/dissectors/packet-eap.c

  • Committer: Bazaar Package Importer
  • Author(s): Frederic Peters
  • Date: 2007-04-01 08:58:40 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20070401085840-or3qhrpv8alt1bwg
Tags: 0.99.5-1
* New upstream release.
* debian/patches/09_idl2wrs.dpatch: updated to patch idl2wrs.sh.in.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * Routines for EAP Extensible Authentication Protocol dissection
3
3
 * RFC 2284, RFC 3748
4
4
 *
5
 
 * $Id: packet-eap.c 18196 2006-05-21 04:49:01Z sahlberg $
 
5
 * $Id: packet-eap.c 20054 2006-12-06 22:03:45Z etxrab $
6
6
 *
7
7
 * Wireshark - Network traffic analyzer
8
8
 * By Gerald Combs <gerald@wireshark.org>
65
65
  2) http://www.ietf.org/internet-drafts/draft-ietf-pppext-rfc2284bis-02.txt
66
66
  3) RFC2284
67
67
  4) RFC3748
68
 
  5) http://www.iana.org/assignments/eap-numbers        EAP registry
 
68
  5) http://www.iana.org/assignments/eap-numbers        EAP registry( updated 2006-10-23)
69
69
*/
70
70
 
71
71
#define EAP_TYPE_ID     1
84
84
static const value_string eap_type_vals[] = {
85
85
  {EAP_TYPE_ID,  "Identity [RFC3748]" },
86
86
  {EAP_TYPE_NOTIFY,"Notification [RFC3748]" },
87
 
  {EAP_TYPE_NAK, "Nak (Response only) [RFC3748]" },
 
87
  {EAP_TYPE_NAK, "Legacy Nak (Response only) [RFC3748]" },
88
88
  {EAP_TYPE_MD5, "MD5-Challenge [RFC3748]" },
89
89
  {  5,          "One Time Password (OTP) [RFC2289]" },
90
90
  {  6,          "Generic Token Card [RFC3748]" },
99
99
  { 15,          "RSA Security SecurID EAP [Asnes, Liberman]" },
100
100
  { 16,          "Arcot Systems EAP [Jerdonek]" },
101
101
  {EAP_TYPE_LEAP,"EAP-Cisco Wireless (LEAP) [Norman]" },
102
 
  {EAP_TYPE_SIM, "EAP-SIM Nokia IP smart card authentication [Haverinen]" },
 
102
  {EAP_TYPE_SIM, "GSM Subscriber Identity Modules (EAP-SIM) [RFC4186]" },
103
103
  { 19,          "SRP-SHA1 Part 1 [Carlson]" },
104
 
  { 20,          "SRP-SHA1 Part 2 [Carlson]" },
 
104
  { 20,          "AVAILABLE" },
105
105
  {EAP_TYPE_TTLS,"EAP-TTLS [Funk]" },
106
106
  { 22,          "Remote Access Service [Fields]" },
107
 
  {EAP_TYPE_AKA, "UMTS Authentication and Key Agreement [Haverinen]" },
 
107
  {EAP_TYPE_AKA, "EAP-AKA Authentication [RFC4187]" },
108
108
  { 24,          "EAP-3Com Wireless [Young]" },
109
109
  {EAP_TYPE_PEAP,"PEAP [Palekar]" },
110
110
  {EAP_TYPE_MSCHAPV2,"MS-EAP-Authentication [Palekar]" },
113
113
  { 29,          "EAP-MSCHAP-V2 [Potter]" },
114
114
  { 30,          "DynamID [Merlin]" },
115
115
  { 31,          "Rob EAP [Ullah]" },
116
 
  { 32,          "SecurID EAP [Josefsson]" },
 
116
  { 32,          "Protected One-Time Password [RFC-draft-nystrom-eap-potp-07.txt] [Nystrom]" },
117
117
  { 33,          "MS-Authentication-TLV [Palekar]" },
118
118
  { 34,          "SentriNET [Kelleher]" },
119
119
  { 35,          "EAP-Actiontec Wireless [Chang]" },
127
127
  {EAP_TYPE_FAST,"EAP-FAST [Cam-Winget]" },
128
128
  { 44,          "ZoneLabs EAP (ZLXEAP) [Bogue]" },
129
129
  { 45,          "EAP-Link [Zick]" },
 
130
  { 46,          "EAP-PAX [Clancy]" },
 
131
  { 47,          "EAP-PSK [RFC-bersani-eap-psk-11.txt]" },
 
132
  { 48,          "EAP-SAKE [RFC-vanderveen-eap-sake-02.txt]" },
130
133
  { 254,         "RESERVED for the Expanded Type [RFC3748]" },
131
134
  { 255,         "EXPERIMENTAL [RFC3748]" },
132
135
  { 0,          NULL }