Bump the version to 0.9.10.
[obnox/wireshark/wip.git] / 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: packet-lapbether.c,v 1.12 2002/09/01 14:30:30 oabad Exp $
7  *
8  * Ethereal - Network traffic analyzer
9  * By Gerald Combs <gerald@ethereal.com>
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 "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     if (check_col(pinfo->cinfo, COL_PROTOCOL))
53         col_set_str(pinfo->cinfo, COL_PROTOCOL, "LAPBETHER");
54     if (check_col(pinfo->cinfo, COL_INFO))
55         col_clear(pinfo->cinfo, COL_INFO);
56
57     len = tvb_get_guint8(tvb, 0) + tvb_get_guint8(tvb, 1) * 256;
58
59     if (tree) {
60
61       ti = proto_tree_add_protocol_format(tree, proto_lapbether, tvb, 0, 2,
62                                           "LAPBETHER");
63
64       lapbether_tree = proto_item_add_subtree(ti, ett_lapbether);
65       proto_tree_add_uint_format(lapbether_tree, hf_lapbether_length, tvb, 0, 2,
66                                  len, "Length: %u", len);
67
68     }
69
70     next_tvb = tvb_new_subset(tvb, 2, len, len);
71     call_dissector(lapb_handle, next_tvb, pinfo, tree);
72
73 }
74
75 void
76 proto_register_lapbether(void)
77 {
78     static hf_register_info hf[] = {
79       { &hf_lapbether_length,
80         { "Length Field", "lapbether.length", FT_UINT16, BASE_DEC, NULL, 0x0,
81           "LAPBEther Length Field", HFILL }},
82
83     };
84     static gint *ett[] = {
85         &ett_lapbether,
86     };
87
88     proto_lapbether = proto_register_protocol ("Link Access Procedure Balanced Ethernet (LAPBETHER)",
89         "LAPBETHER", "lapbether");
90     proto_register_field_array (proto_lapbether, hf, array_length(hf));
91     proto_register_subtree_array(ett, array_length(ett));
92 }
93
94 /* The registration hand-off routine */
95 void
96 proto_reg_handoff_lapbether(void)
97 {
98   dissector_handle_t lapbether_handle;
99
100   /*
101    * Get a handle for the LAPB dissector.
102    */
103   lapb_handle = find_dissector("lapb");
104
105   lapbether_handle = create_dissector_handle(dissect_lapbether,
106                                              proto_lapbether);
107   dissector_add("ethertype", ETHERTYPE_DEC, lapbether_handle);
108
109 }