aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-bofl.c
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>2004-07-18 18:06:47 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>2004-07-18 18:06:47 +0000
commit669db206cb1f270046ad400fff7655e20c63e723 (patch)
tree4eff24a2e16c8963e497e1fc575f35e6af59bd26 /epan/dissectors/packet-bofl.c
parentae46c27a38700af669ef907491081f09df6f6b2c (diff)
Move dissectors to epan/dissectors directory.
Also move ncp222.py, x11-fields, process-x11-fields.pl, make-reg-dotc, and make-reg-dotc.py. Adjust #include lines in files that include packet-*.h files. svn path=/trunk/; revision=11410
Diffstat (limited to 'epan/dissectors/packet-bofl.c')
-rw-r--r--epan/dissectors/packet-bofl.c140
1 files changed, 140 insertions, 0 deletions
diff --git a/epan/dissectors/packet-bofl.c b/epan/dissectors/packet-bofl.c
new file mode 100644
index 0000000000..3a9e9dd2f7
--- /dev/null
+++ b/epan/dissectors/packet-bofl.c
@@ -0,0 +1,140 @@
+/* packet-bofl.c
+ * Routines for Wellfleet BOFL dissection
+ * Author: Endoh Akira (endoh@netmarks.co.jp)
+ *
+ * $Id$
+ *
+ * Ethereal - Network traffic analyzer
+ * By Gerald Combs <gerald@unicom.net>
+ * 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.
+ *
+ * The following information was copied from
+ * http://www.protocols.com/pbook/bridge.htm#WellfleetBOFL
+ *
+ * The Wellfleet Breath of Life (BOFL) protocol is used as a line sensing
+ * protocol on:
+ *
+ * - Ethernet LANs to detect transmitter jams.
+ * - Synchronous lines running WFLT STD protocols to determine if the line
+ * is up.
+ * - Dial backup PPP lines.
+ *
+ * The frame format of Wellfleet BOFL is shown following the Ethernet header
+ * in the following illustration:
+ *
+ * Destination Source 8102 PDU Sequence Padding
+ * 6 6 2 4 4 n bytes
+ */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+#include <glib.h>
+
+#include <epan/packet.h>
+
+#define ETHER_TYPE_BOFL 0x8102
+#define BOFL_MIN_LEN 8
+
+/* Initialize the protocol and registered fields */
+static int proto_bofl = -1;
+static int hf_bofl_pdu = -1;
+static int hf_bofl_sequence = -1;
+
+/* Initialize the subtree pointers */
+static gint ett_bofl = -1;
+
+/* Code to actually dissect the packets */
+static void
+dissect_bofl(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
+{
+ proto_item *ti;
+ proto_tree *bofl_tree = NULL;
+ gint len;
+ guint32 pdu, sequence;
+
+ if (check_col(pinfo->cinfo, COL_PROTOCOL))
+ col_set_str(pinfo->cinfo, COL_PROTOCOL, "BOFL");
+
+ if (check_col(pinfo->cinfo, COL_INFO))
+ col_clear(pinfo->cinfo, COL_INFO);
+
+ if (tree) {
+ ti = proto_tree_add_item(tree, proto_bofl, tvb, 0, -1, FALSE);
+ bofl_tree = proto_item_add_subtree(ti, ett_bofl);
+ }
+
+ pdu = tvb_get_ntohl(tvb, 0);
+ if (check_col(pinfo->cinfo, COL_INFO)) {
+ col_add_fstr(pinfo->cinfo, COL_INFO,
+ "PDU: 0x%08x", pdu);
+ }
+ if (tree)
+ proto_tree_add_uint(bofl_tree, hf_bofl_pdu, tvb, 0, 4, pdu);
+
+ sequence = tvb_get_ntohl(tvb, 4);
+ if (check_col(pinfo->cinfo, COL_INFO)) {
+ col_append_fstr(pinfo->cinfo, COL_INFO,
+ " Sequence: %u", sequence);
+ }
+ if (tree) {
+ proto_tree_add_uint(bofl_tree, hf_bofl_sequence, tvb, 4, 4, sequence);
+
+ len = tvb_length_remaining(tvb, 8);
+ if (len > 0)
+ proto_tree_add_text(bofl_tree, tvb, 8, len,
+ "Padding (%d byte)", len);
+ }
+}
+
+
+void
+proto_register_bofl(void)
+{
+ static hf_register_info hf[] = {
+ { &hf_bofl_pdu,
+ { "PDU", "bofl.pdu",
+ FT_UINT32, BASE_HEX, NULL, 0,
+ "PDU; normally equals 0x01010000 or 0x01011111", HFILL }
+ },
+ { &hf_bofl_sequence,
+ { "Sequence", "bofl.sequence",
+ FT_UINT32, BASE_DEC, NULL, 0,
+ "incremental counter", HFILL }
+ }
+ };
+
+ static gint *ett[] = {
+ &ett_bofl,
+ };
+
+ proto_bofl = proto_register_protocol("Wellfleet Breath of Life",
+ "BOFL", "bofl");
+ proto_register_field_array(proto_bofl, hf, array_length(hf));
+ proto_register_subtree_array(ett, array_length(ett));
+}
+
+
+void
+proto_reg_handoff_bofl(void)
+{
+ dissector_handle_t bofl_handle;
+
+ bofl_handle = create_dissector_handle(dissect_bofl, proto_bofl);
+ dissector_add("ethertype", ETHER_TYPE_BOFL, bofl_handle);
+}