#include prefs.h not req'd
[obnox/wireshark/wip.git] / asn1 / h282 / packet-h282-template.c
1 /* packet-h282.c
2  * Routines for H.282 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/conversation.h>
33 #include <epan/oids.h>
34 #include <epan/asn1.h>
35
36 #include <stdio.h>
37 #include <string.h>
38
39 #include "packet-per.h"
40
41 #define PNAME  "H.282 Remote Device Control"
42 #define PSNAME "RDC"
43 #define PFNAME "rdc"
44
45 /* Initialize the protocol and registered fields */
46 int proto_h282 = -1;
47 #include "packet-h282-hf.c"
48
49 /* Initialize the subtree pointers */
50 static int ett_h282 = -1;
51 #include "packet-h282-ett.c"
52
53 /* Dissectors */
54
55 /* Subdissectors */
56
57 #include "packet-h282-fn.c"
58
59 static int
60 dissect_h282(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
61 {
62   proto_item  *ti = NULL;
63   proto_tree  *h282_tree = NULL;
64
65   if (check_col(pinfo->cinfo, COL_PROTOCOL))
66     col_set_str(pinfo->cinfo, COL_PROTOCOL, PSNAME);
67
68   ti = proto_tree_add_item(tree, proto_h282, tvb, 0, -1, FALSE);
69   h282_tree = proto_item_add_subtree(ti, ett_h282);
70
71   return dissect_RDCPDU_PDU(tvb, pinfo, h282_tree);
72 }
73
74 /*--- proto_register_h282 ----------------------------------------------*/
75 void proto_register_h282(void) {
76
77   /* List of fields */
78   static hf_register_info hf[] = {
79 #include "packet-h282-hfarr.c"
80   };
81
82   /* List of subtrees */
83   static gint *ett[] = {
84     &ett_h282,
85 #include "packet-h282-ettarr.c"
86   };
87
88   /* Register protocol */
89   proto_h282 = proto_register_protocol(PNAME, PSNAME, PFNAME);
90
91   /* Register fields and subtrees */
92   proto_register_field_array(proto_h282, hf, array_length(hf));
93   proto_register_subtree_array(ett, array_length(ett));
94
95   new_register_dissector(PFNAME, dissect_h282, proto_h282);
96   new_register_dissector(PFNAME".device_list", dissect_NonCollapsingCapabilities_PDU, proto_h282);
97
98 }
99
100 /*--- proto_reg_handoff_h282 -------------------------------------------*/
101 void proto_reg_handoff_h282(void) 
102 {
103
104 }
105