Use MAC address documentation range in filter examples
[metze/wireshark/wip.git] / epan / dissectors / packet-bt-oui.c
index 369de1bb7ce3a0f1c2f4a740a79da31df13cdc0c..6388b08c829059b4e8cf82026a5308467a2b23ef 100644 (file)
@@ -3,8 +3,6 @@
  * Copyright 2012 intel Corp.
  * Written by Andrei Emeltchenko at intel dot com
  *
- * $Id$
- *
  * Wireshark - Network traffic analyzer
  * By Gerald Combs <gerald@wireshark.org>
  * Copyright 1998 Gerald Combs
@@ -54,6 +52,9 @@ static const value_string bluetooth_pid_vals[] = {
        { 0,    NULL }
 };
 
+void proto_register_bt_oui(void);
+void proto_reg_handoff_bt_oui(void);
+
 /*
  * NOTE: there's no dissector here, just registration routines to set
  * up the dissector table for the Bluetooth OUI
@@ -81,6 +82,18 @@ void proto_register_bt_oui(void)
                }
        };
 
-       llc_add_oui(OUI_BLUETOOTH, "llc.bluetooth_pid", "Bluetooth OUI PID", hf);
+       llc_add_oui(OUI_BLUETOOTH, "llc.bluetooth_pid", "LLC Bluetooth OUI PID", hf);
 }
 
+/*
+ * Editor modelines  -  http://www.wireshark.org/tools/modelines.html
+ *
+ * Local variables:
+ * c-basic-offset: 8
+ * tab-width: 8
+ * indent-tabs-mode: t
+ * End:
+ *
+ * vi: set shiftwidth=8 tabstop=8 noexpandtab:
+ * :indentSize=8:tabSize=8:noTabs=false:
+ */