aboutsummaryrefslogtreecommitdiffstats
path: root/packet-eapol.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-04-07 06:04:22 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-04-07 06:04:22 +0000
commite4e991c7add1515d72954d075dc709bbdc289b0e (patch)
treea16ffb6906da1939727f31926c7ff6892b079bd9 /packet-eapol.c
parent60c15002666853e64a262d93744e7eddd58e1e36 (diff)
From Jouni Malinen: add support for the 802.11i/RSN pre-authentication
Ethertype. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10558 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-eapol.c')
-rw-r--r--packet-eapol.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/packet-eapol.c b/packet-eapol.c
index ff14b789d6..5fe09ff0d2 100644
--- a/packet-eapol.c
+++ b/packet-eapol.c
@@ -3,7 +3,7 @@
* (From IEEE Draft P802.1X/D11; is there a later draft, or a
* final standard? If so, check it.)
*
- * $Id: packet-eapol.c,v 1.18 2004/03/30 19:15:24 guy Exp $
+ * $Id: packet-eapol.c,v 1.19 2004/04/07 06:04:22 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -427,4 +427,5 @@ proto_reg_handoff_eapol(void)
eapol_handle = create_dissector_handle(dissect_eapol, proto_eapol);
dissector_add("ethertype", ETHERTYPE_EAPOL, eapol_handle);
+ dissector_add("ethertype", ETHERTYPE_RSN_PREAUTH, eapol_handle);
}