aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-zep.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2009-05-20 19:29:39 +0000
committerGerald Combs <gerald@wireshark.org>2009-05-20 19:29:39 +0000
commitf5e8e21ce2658c75f41818eb813ee4000b52ec9c (patch)
treecf014ea9608d08848508d6b9bc54bda8f10cc80c /epan/dissectors/packet-zep.h
parentbd79d12416d02871675d12427a405b8cc791122a (diff)
From Owen Kirby via bug 3431:
The attached patch file adds dissectors for the ZigBee protocol stack, which runs atop the IEEE 802.15.4 dissector. Also included is the dissector for the ZigBee Encapsulation Protocol (packet-zep.c), used by the Exegin Q51 protocol analyzer. From me: Fix a bunch of gcc (the compiler, not me) warnings. svn path=/trunk/; revision=28429
Diffstat (limited to 'epan/dissectors/packet-zep.h')
-rw-r--r--epan/dissectors/packet-zep.h51
1 files changed, 51 insertions, 0 deletions
diff --git a/epan/dissectors/packet-zep.h b/epan/dissectors/packet-zep.h
new file mode 100644
index 0000000000..fde886446f
--- /dev/null
+++ b/epan/dissectors/packet-zep.h
@@ -0,0 +1,51 @@
+/* packet-zep.h
+ * Dissector routines for the ZigBee Encapsulation Protocol
+ * By Owen Kirby <osk@exegin.com>
+ * Copyright 2009 Exegin Technologies Limited
+ *
+ * $Id$
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#define ZEP_DEFAULT_PORT 17754
+
+/* ZEP Preamble Code */
+#define ZEP_PREAMBLE "EX"
+
+/* ZEP Header lengths. */
+#define ZEP_V1_HEADER_LEN 16
+#define ZEP_V2_HEADER_LEN 32
+#define ZEP_V2_ACK_LEN 8
+
+#define ZEP_V2_TYPE_DATA 1
+#define ZEP_V2_TYPE_ACK 2
+
+#define ZEP_LENGTH_MASK 0x7F
+
+typedef struct{
+ guint8 version;
+ guint8 type;
+ guint8 channel_id;
+ guint16 device_id;
+ gboolean lqi_mode;
+ guint8 lqi;
+ nstime_t ntp_time;
+ guint32 seqno;
+} zep_info;