MSWSP: fix dissect_mswsp_smb()
[wireshark-wip.git] / epan / dissectors / packet-pcli.c
blobda684ac9150a37a02fbd42b238ed2d41710f82ab
1 /* packet-pcli.c
2 * Routines for Packet Cable Lawful Intercept packet disassembly
3 * Packet Cable Lawful Intercept is detailed at
4 * http://www.cablelabs.com/specifications/archives/PKT-SP-ESP-I01-991229.pdf
5 * Chapter 4 ( Call Content Connection Interface )
7 * $Id$
9 * Copyright (c) 2000 by Ed Warnicke <hagbard@physics.rutgers.edu>
11 * Wireshark - Network traffic analyzer
12 * By Gerald Combs <gerald@wireshark.org>
13 * Copyright 1999 Gerald Combs
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version 2
18 * of the License, or (at your option) any later version.
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
30 /* Include files */
32 #include "config.h"
34 #include <glib.h>
36 #include <epan/packet.h>
37 #include <epan/addr_resolv.h>
38 #include <epan/prefs.h>
39 #include <epan/strutil.h>
41 /* Define udp_port for lawful intercept */
43 #define UDP_PORT_PCLI 9000
45 void proto_reg_handoff_pcli(void);
47 /* Define the pcli proto */
49 static int proto_pcli = -1;
51 /* Define headers for pcli */
53 static int hf_pcli_cccid = -1;
55 /* Define the tree for pcli */
57 static int ett_pcli = -1;
60 * Here are the global variables associated with the preferences
61 * for pcli
64 static guint global_udp_port_pcli = UDP_PORT_PCLI;
66 /* A static handle for the ip dissector */
67 static dissector_handle_t ip_handle;
69 static void
70 dissect_pcli(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) {
72 guint32 cccid;
73 proto_tree *ti,*pcli_tree;
74 tvbuff_t * next_tvb;
76 /* Set the protocol column */
77 col_set_str(pinfo->cinfo, COL_PROTOCOL, "PCLI");
79 /* Get the CCCID */
80 cccid = tvb_get_ntohl(tvb,0);
82 /* Set the info column */
83 col_add_fstr(pinfo->cinfo, COL_INFO, "CCCID: %u",cccid);
86 *If we have a non-null tree (ie we are building the proto_tree
87 * instead of just filling out the columns ), then add a PLCI
88 * tree node and put a CCCID header element under it.
90 if(tree) {
91 ti = proto_tree_add_item(tree, proto_pcli, tvb, 0, 0, ENC_NA);
92 pcli_tree = proto_item_add_subtree(ti,ett_pcli);
93 proto_tree_add_uint(pcli_tree, hf_pcli_cccid, tvb, 0, 4, cccid);
97 * Hand off to the IP dissector.
99 next_tvb = tvb_new_subset_remaining(tvb,4);
100 call_dissector(ip_handle,next_tvb,pinfo,tree);
103 void
104 proto_register_pcli(void) {
105 static hf_register_info hf[] = {
106 { &hf_pcli_cccid,
107 { "CCCID", "pcli.cccid", FT_UINT32, BASE_DEC, NULL, 0x0,
108 "Call Content Connection Identifier", HFILL }},
111 static gint *ett[] = {
112 &ett_pcli,
115 module_t *pcli_module;
117 proto_pcli = proto_register_protocol("Packet Cable Lawful Intercept",
118 "PCLI","pcli");
119 proto_register_field_array(proto_pcli,hf,array_length(hf));
120 proto_register_subtree_array(ett,array_length(ett));
122 pcli_module = prefs_register_protocol(proto_pcli, proto_reg_handoff_pcli);
123 prefs_register_uint_preference(pcli_module, "udp_port",
124 "PCLI UDP Port",
125 "The UDP port on which "
126 "Packet Cable Lawful Intercept "
127 "packets will be sent",
128 10,&global_udp_port_pcli);
132 /* The registration hand-off routing */
134 void
135 proto_reg_handoff_pcli(void) {
136 static gboolean pcli_initialized = FALSE;
137 static dissector_handle_t pcli_handle;
138 static guint udp_port_pcli;
140 if(!pcli_initialized) {
141 pcli_handle = create_dissector_handle(dissect_pcli,proto_pcli);
142 ip_handle = find_dissector("ip");
143 pcli_initialized = TRUE;
144 } else {
145 dissector_delete_uint("udp.port",udp_port_pcli,pcli_handle);
148 udp_port_pcli = global_udp_port_pcli;
150 dissector_add_uint("udp.port",global_udp_port_pcli,pcli_handle);
154 * Editor modelines - http://www.wireshark.org/tools/modelines.html
156 * Local variables:
157 * c-basic-offset: 4
158 * tab-width: 8
159 * indent-tabs-mode: nil
160 * End:
162 * vi: set shiftwidth=4 tabstop=8 expandtab:
163 * :indentSize=4:tabSize=8:noTabs=true: