aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-wol.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2008-09-26 22:07:45 +0000
committerBill Meier <wmeier@newsguy.com>2008-09-26 22:07:45 +0000
commitc3ea1560bdfb42902824fedb465ccb137b36a313 (patch)
tree5462bb9beb194a7eec24261edcbb2a50952443ce /epan/dissectors/packet-wol.c
parentffa7320de25b5bcb606b76a3cfd33bae52a2eab4 (diff)
Minor cleanup related to proto_register and proto_reg_handoff
svn path=/trunk/; revision=26281
Diffstat (limited to 'epan/dissectors/packet-wol.c')
-rw-r--r--epan/dissectors/packet-wol.c41
1 files changed, 14 insertions, 27 deletions
diff --git a/epan/dissectors/packet-wol.c b/epan/dissectors/packet-wol.c
index 52225e51f1..035e5518f8 100644
--- a/epan/dissectors/packet-wol.c
+++ b/epan/dissectors/packet-wol.c
@@ -66,16 +66,12 @@
#include <epan/addr_resolv.h>
#include <epan/packet.h>
-#include <epan/prefs.h>
#include <epan/etypes.h>
/* IF PROTO exposes code to other dissectors, then it must be exported
in a header file. If not, a header file is not needed at all. */
/* #include "packet-wol.h" */
-/* Forward declaration we need below */
-void proto_reg_handoff_wol(void);
-
/* Initialize the protocol and registered fields */
static int proto_wol = -1;
static int hf_wol_sync = -1;
@@ -330,37 +326,28 @@ proto_register_wol(void)
This exact format is required because a script is used to find these
routines and create the code that calls these routines.
- This function is also called by preferences whenever "Apply" is pressed
- (see prefs_register_protocol above) so it should accommodate being called
- more than once.
*/
void
proto_reg_handoff_wol(void)
{
- static gboolean inited = FALSE;
-
- if ( !inited )
- {
- dissector_handle_t wol_handle;
+ dissector_handle_t wol_handle;
/* Use new_create_dissector_handle() to indicate that dissect_wol()
* returns the number of bytes it dissected (or 0 if it thinks the packet
* does not belong to PROTONAME).
*/
- wol_handle = new_create_dissector_handle(dissect_wol, proto_wol);
-
- /* We don't really want to register with EVERY possible dissector,
- * do we? I know that the AMD white paper specifies that the
- * MagicPacket could be present in any frame, but are we seriously
- * going to register WOL with every other dissector!? I think not.
- *
- * Unless anyone has a better idea, just register with only those that
- * are in "common usage" and grow this list as needed. Yeah, I'm sure
- * we'll miss some, but how else to do this ... add a thousand of
- * these dissector_add()'s and heur_dissector_add()'s??? */
- dissector_add("ethertype", ETHERTYPE_WOL, wol_handle);
- heur_dissector_add("udp", dissect_wol, proto_wol);
- inited = TRUE;
- }
+ wol_handle = new_create_dissector_handle(dissect_wol, proto_wol);
+
+ /* We don't really want to register with EVERY possible dissector,
+ * do we? I know that the AMD white paper specifies that the
+ * MagicPacket could be present in any frame, but are we seriously
+ * going to register WOL with every other dissector!? I think not.
+ *
+ * Unless anyone has a better idea, just register with only those that
+ * are in "common usage" and grow this list as needed. Yeah, I'm sure
+ * we'll miss some, but how else to do this ... add a thousand of
+ * these dissector_add()'s and heur_dissector_add()'s??? */
+ dissector_add("ethertype", ETHERTYPE_WOL, wol_handle);
+ heur_dissector_add("udp", dissect_wol, proto_wol);
}