For proto_tree_add_item(..., proto_xxx, ...)use ENC_NA as the encoding arg.
[obnox/wireshark/wip.git] / asn1 / h283 / packet-h283-template.c
1 /* packet-h283.c
2  * Routines for H.283 packet dissection
3  * 2007  Tomas Kukosa
4  *
5  * $Id$
6  *
7  * Wireshark - Network traffic analyzer
8  * By Gerald Combs <gerald@wireshark.org>
9  * Copyright 1998 Gerald Combs
10  *
11  * This program is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU General Public License
13  * as published by the Free Software Foundation; either version 2
14  * of the License, or (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
24  */
25
26 #ifdef HAVE_CONFIG_H
27 # include "config.h"
28 #endif
29
30 #include <glib.h>
31 #include <epan/packet.h>
32 #include <epan/oids.h>
33 #include <epan/asn1.h>
34
35 #include "packet-per.h"
36
37 #define PNAME  "H.283 Logical Channel Transport"
38 #define PSNAME "LCT"
39 #define PFNAME "lct"
40
41 /* Initialize the protocol and registered fields */
42 static int proto_h283 = -1;
43 #include "packet-h283-hf.c"
44
45 /* Initialize the subtree pointers */
46 static int ett_h283 = -1;
47 #include "packet-h283-ett.c"
48
49 /* Subdissectors */
50 static dissector_handle_t rdc_pdu_handle;
51 static dissector_handle_t rdc_device_list_handle;
52 static dissector_handle_t data_handle;
53
54 static gboolean info_is_set;
55
56 #include "packet-h283-fn.c"
57
58 static int
59 dissect_h283_udp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
60 {
61   proto_item  *ti = NULL;
62   proto_tree  *h283_tree = NULL;
63
64   col_set_str(pinfo->cinfo, COL_PROTOCOL, PSNAME);
65
66   info_is_set = FALSE;
67
68   ti = proto_tree_add_item(tree, proto_h283, tvb, 0, -1, ENC_NA);
69   h283_tree = proto_item_add_subtree(ti, ett_h283);
70
71   return dissect_LCTPDU_PDU(tvb, pinfo, h283_tree);
72 }
73
74 /*--- proto_register_h283 ----------------------------------------------*/
75 void proto_register_h283(void) {
76
77   /* List of fields */
78   static hf_register_info hf[] = {
79 #include "packet-h283-hfarr.c"
80   };
81
82   /* List of subtrees */
83   static gint *ett[] = {
84     &ett_h283,
85 #include "packet-h283-ettarr.c"
86   };
87
88   /* Register protocol */
89   proto_h283 = proto_register_protocol(PNAME, PSNAME, PFNAME);
90
91   /* Register fields and subtrees */
92   proto_register_field_array(proto_h283, hf, array_length(hf));
93   proto_register_subtree_array(ett, array_length(ett));
94
95   new_register_dissector(PFNAME, dissect_h283_udp, proto_h283);
96
97 }
98
99 /*--- proto_reg_handoff_h283 -------------------------------------------*/
100 void proto_reg_handoff_h283(void)
101 {
102   dissector_handle_t h283_udp_handle;
103
104   h283_udp_handle = find_dissector(PFNAME);
105   dissector_add_handle("udp.port", h283_udp_handle);
106
107   rdc_pdu_handle = find_dissector("rdc");
108   rdc_device_list_handle = find_dissector("rdc.device_list");
109   data_handle = find_dissector("data");
110 }
111