aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-componentstatus.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2013-12-20 15:55:40 +0000
committerBill Meier <wmeier@newsguy.com>2013-12-20 15:55:40 +0000
commitbf9f19e308f98dd1a8a965825385b9a794f725f0 (patch)
tree6052e8a37fd6f3507674738761d44b9eedf07c37 /epan/dissectors/packet-componentstatus.c
parentccdb11e1774ac8ef83056f307e311801669f6a27 (diff)
#if 0 some unused #defines;
Add editor modelines. svn path=/trunk/; revision=54305
Diffstat (limited to 'epan/dissectors/packet-componentstatus.c')
-rw-r--r--epan/dissectors/packet-componentstatus.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/epan/dissectors/packet-componentstatus.c b/epan/dissectors/packet-componentstatus.c
index 5d7ff7f1f1..80d6580b4e 100644
--- a/epan/dissectors/packet-componentstatus.c
+++ b/epan/dissectors/packet-componentstatus.c
@@ -32,6 +32,7 @@
#include <epan/packet.h>
+#if 0
#define CSP_VERSION 0x0200
#define CID_GROUP(id) (((uint64_t) id >> 56) & (0xffffULL)
@@ -44,6 +45,7 @@
#define CID_COMPOUND(group, object) (((uint64_t) (group & 0xffff) << 56) | CID_OBJECT((uint64_t)object))
#define CSPT_REPORT
+#endif
void proto_register_componentstatusprotocol(void);
void proto_reg_handoff_componentstatusprotocol(void);
@@ -301,3 +303,16 @@ proto_reg_handoff_componentstatusprotocol(void)
componentstatusprotocol_handle = new_create_dissector_handle(dissect_componentstatusprotocol, proto_componentstatusprotocol);
dissector_add_uint("udp.port", COMPONENTSTATUSPROTOCOL_PORT, componentstatusprotocol_handle);
}
+
+/*
+ * Editor modelines
+ *
+ * Local Variables:
+ * c-basic-offset: 2
+ * tab-width: 8
+ * indent-tabs-mode: nil
+ * End:
+ *
+ * ex: set shiftwidth=2 tabstop=8 expandtab:
+ * :indentSize=2:tabSize=8:noTabs=true:
+ */