aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-eapol.c
diff options
context:
space:
mode:
authorJakub Zawadzki <darkjames-ws@darkjames.pl>2013-08-05 18:09:43 +0000
committerJakub Zawadzki <darkjames-ws@darkjames.pl>2013-08-05 18:09:43 +0000
commit5fa2a99087bc56ea57ff31a7abf1d17f6bf8a2ca (patch)
treed7066597386b650b9f4b82cf5ea9c8e22c36a980 /epan/dissectors/packet-eapol.c
parent9999016855a210f7b0417592c7543c19abf76d41 (diff)
Keep result of [new_]register_dissector in some dissectors.
svn path=/trunk/; revision=51156
Diffstat (limited to 'epan/dissectors/packet-eapol.c')
-rw-r--r--epan/dissectors/packet-eapol.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/epan/dissectors/packet-eapol.c b/epan/dissectors/packet-eapol.c
index c14c1d1af3..8971db66ff 100644
--- a/epan/dissectors/packet-eapol.c
+++ b/epan/dissectors/packet-eapol.c
@@ -73,6 +73,8 @@ static gint ett_eapol_keydes_data = -1;
static gint ett_eapol_key_index = -1;
static gint ett_keyinfo = -1;
+static dissector_handle_t eapol_handle;
+
static dissector_handle_t eap_handle;
static dissector_handle_t data_handle;
@@ -521,7 +523,7 @@ proto_register_eapol(void)
};
proto_eapol = proto_register_protocol("802.1X Authentication", "EAPOL", "eapol");
- register_dissector("eapol", dissect_eapol, proto_eapol);
+ eapol_handle = register_dissector("eapol", dissect_eapol, proto_eapol);
proto_register_field_array(proto_eapol, hf, array_length(hf));
proto_register_subtree_array(ett, array_length(ett));
@@ -530,15 +532,12 @@ proto_register_eapol(void)
void
proto_reg_handoff_eapol(void)
{
- dissector_handle_t eapol_handle;
-
/*
* Get handles for the EAP and raw data dissectors.
*/
eap_handle = find_dissector("eap");
data_handle = find_dissector("data");
- eapol_handle = create_dissector_handle(dissect_eapol, proto_eapol);
dissector_add_uint("ethertype", ETHERTYPE_EAPOL, eapol_handle);
dissector_add_uint("ethertype", ETHERTYPE_RSN_PREAUTH, eapol_handle);
}