aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-eap.c
diff options
context:
space:
mode:
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2006-12-06 22:03:45 +0000
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2006-12-06 22:03:45 +0000
commit2a5af9545874eb2317a14e3940b8e87dfb158b7a (patch)
treeb9ea2a9b93b3715fec5114a67589cf384528a28c /epan/dissectors/packet-eap.c
parent49f1192d4c62851c049b73f78434160864f03242 (diff)
Dissect EAP inside ISAKMP update some strings from IANA.
(fix bug http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=777) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@20054 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-eap.c')
-rw-r--r--epan/dissectors/packet-eap.c15
1 files changed, 9 insertions, 6 deletions
diff --git a/epan/dissectors/packet-eap.c b/epan/dissectors/packet-eap.c
index ae87dc8854..4332234bf4 100644
--- a/epan/dissectors/packet-eap.c
+++ b/epan/dissectors/packet-eap.c
@@ -65,7 +65,7 @@ References:
2) http://www.ietf.org/internet-drafts/draft-ietf-pppext-rfc2284bis-02.txt
3) RFC2284
4) RFC3748
- 5) http://www.iana.org/assignments/eap-numbers EAP registry
+ 5) http://www.iana.org/assignments/eap-numbers EAP registry( updated 2006-10-23)
*/
#define EAP_TYPE_ID 1
@@ -84,7 +84,7 @@ References:
static const value_string eap_type_vals[] = {
{EAP_TYPE_ID, "Identity [RFC3748]" },
{EAP_TYPE_NOTIFY,"Notification [RFC3748]" },
- {EAP_TYPE_NAK, "Nak (Response only) [RFC3748]" },
+ {EAP_TYPE_NAK, "Legacy Nak (Response only) [RFC3748]" },
{EAP_TYPE_MD5, "MD5-Challenge [RFC3748]" },
{ 5, "One Time Password (OTP) [RFC2289]" },
{ 6, "Generic Token Card [RFC3748]" },
@@ -99,12 +99,12 @@ static const value_string eap_type_vals[] = {
{ 15, "RSA Security SecurID EAP [Asnes, Liberman]" },
{ 16, "Arcot Systems EAP [Jerdonek]" },
{EAP_TYPE_LEAP,"EAP-Cisco Wireless (LEAP) [Norman]" },
- {EAP_TYPE_SIM, "EAP-SIM Nokia IP smart card authentication [Haverinen]" },
+ {EAP_TYPE_SIM, "GSM Subscriber Identity Modules (EAP-SIM) [RFC4186]" },
{ 19, "SRP-SHA1 Part 1 [Carlson]" },
- { 20, "SRP-SHA1 Part 2 [Carlson]" },
+ { 20, "AVAILABLE" },
{EAP_TYPE_TTLS,"EAP-TTLS [Funk]" },
{ 22, "Remote Access Service [Fields]" },
- {EAP_TYPE_AKA, "UMTS Authentication and Key Agreement [Haverinen]" },
+ {EAP_TYPE_AKA, "EAP-AKA Authentication [RFC4187]" },
{ 24, "EAP-3Com Wireless [Young]" },
{EAP_TYPE_PEAP,"PEAP [Palekar]" },
{EAP_TYPE_MSCHAPV2,"MS-EAP-Authentication [Palekar]" },
@@ -113,7 +113,7 @@ static const value_string eap_type_vals[] = {
{ 29, "EAP-MSCHAP-V2 [Potter]" },
{ 30, "DynamID [Merlin]" },
{ 31, "Rob EAP [Ullah]" },
- { 32, "SecurID EAP [Josefsson]" },
+ { 32, "Protected One-Time Password [RFC-draft-nystrom-eap-potp-07.txt] [Nystrom]" },
{ 33, "MS-Authentication-TLV [Palekar]" },
{ 34, "SentriNET [Kelleher]" },
{ 35, "EAP-Actiontec Wireless [Chang]" },
@@ -127,6 +127,9 @@ static const value_string eap_type_vals[] = {
{EAP_TYPE_FAST,"EAP-FAST [Cam-Winget]" },
{ 44, "ZoneLabs EAP (ZLXEAP) [Bogue]" },
{ 45, "EAP-Link [Zick]" },
+ { 46, "EAP-PAX [Clancy]" },
+ { 47, "EAP-PSK [RFC-bersani-eap-psk-11.txt]" },
+ { 48, "EAP-SAKE [RFC-vanderveen-eap-sake-02.txt]" },
{ 254, "RESERVED for the Expanded Type [RFC3748]" },
{ 255, "EXPERIMENTAL [RFC3748]" },
{ 0, NULL }