From Didier Gautheron:
[obnox/wireshark/wip.git] / epan / dissectors / packet-lapbether.c
1 /* packet-lapbether.c
2  * Routines for lapbether frame disassembly
3  * Richard Sharpe <rsharpe@ns.aus.com> based on the lapb module by
4  * Olivier Abad <oabad@noos.fr>
5  *
6  * $Id$
7  *
8  * Wireshark - Network traffic analyzer
9  * By Gerald Combs <gerald@wireshark.org>
10  * Copyright 1998
11  *
12  * This program is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU General Public License
14  * as published by the Free Software Foundation; either version 2
15  * of the License, or (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
25  */
26
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <stdio.h>
32 #include <glib.h>
33 #include <string.h>
34 #include <epan/packet.h>
35 #include <epan/etypes.h>
36
37 static int proto_lapbether = -1;
38
39 static int hf_lapbether_length = -1;
40
41 static gint ett_lapbether = -1;
42
43 static dissector_handle_t lapb_handle;
44
45 static void
46 dissect_lapbether(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
47 {
48     proto_tree          *lapbether_tree, *ti;
49     int                 len;
50     tvbuff_t            *next_tvb;
51
52     col_set_str(pinfo->cinfo, COL_PROTOCOL, "LAPBETHER");
53     col_clear(pinfo->cinfo, COL_INFO);
54
55     len = tvb_get_guint8(tvb, 0) + tvb_get_guint8(tvb, 1) * 256;
56
57     if (tree) {
58
59       ti = proto_tree_add_protocol_format(tree, proto_lapbether, tvb, 0, 2,
60                                           "LAPBETHER");
61
62       lapbether_tree = proto_item_add_subtree(ti, ett_lapbether);
63       proto_tree_add_uint_format(lapbether_tree, hf_lapbether_length, tvb, 0, 2,
64                                  len, "Length: %u", len);
65
66     }
67
68     next_tvb = tvb_new_subset(tvb, 2, len, len);
69     call_dissector(lapb_handle, next_tvb, pinfo, tree);
70
71 }
72
73 void
74 proto_register_lapbether(void)
75 {
76     static hf_register_info hf[] = {
77       { &hf_lapbether_length,
78         { "Length Field", "lapbether.length", FT_UINT16, BASE_DEC, NULL, 0x0,
79           "LAPBEther Length Field", HFILL }},
80
81     };
82     static gint *ett[] = {
83         &ett_lapbether,
84     };
85
86     proto_lapbether = proto_register_protocol ("Link Access Procedure Balanced Ethernet (LAPBETHER)",
87         "LAPBETHER", "lapbether");
88     proto_register_field_array (proto_lapbether, hf, array_length(hf));
89     proto_register_subtree_array(ett, array_length(ett));
90 }
91
92 /* The registration hand-off routine */
93 void
94 proto_reg_handoff_lapbether(void)
95 {
96   dissector_handle_t lapbether_handle;
97
98   /*
99    * Get a handle for the LAPB dissector.
100    */
101   lapb_handle = find_dissector("lapb");
102
103   lapbether_handle = create_dissector_handle(dissect_lapbether,
104                                              proto_lapbether);
105   dissector_add("ethertype", ETHERTYPE_DEC, lapbether_handle);
106
107 }