From Lars Roland:
[obnox/wireshark/wip.git] / packet-data.c
1 /* packet-data.c
2  * Routines for raw data (default case)
3  * Gilbert Ramirez <gram@alumni.rice.edu>
4  *
5  * $Id: packet-data.c,v 1.33 2003/04/22 13:47:37 tuexen Exp $
6  *
7  * Ethereal - Network traffic analyzer
8  * By Gerald Combs <gerald@ethereal.com>
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 "packet-data.h"
33
34 /* proto_data cannot be static because it's referenced in the
35  * print routines
36  */
37 int proto_data = -1;
38
39 static void
40 dissect_data(tvbuff_t *tvb, packet_info *pinfo _U_ , proto_tree *tree)
41 {
42         int bytes;
43
44         if (tree) {
45                 bytes = tvb_length_remaining(tvb, 0);
46                 if (bytes > 0) {
47                         proto_tree_add_protocol_format(tree, proto_data, tvb,
48                                 0,
49                                 bytes, "Data (%d byte%s)", bytes,
50                                 plurality(bytes, "", "s"));
51                 }
52         }
53 }
54
55 void
56 proto_register_data(void)
57 {
58         proto_data = proto_register_protocol (
59                 "Data",         /* name */
60                 "Data",         /* short name */
61                 "data"          /* abbrev */
62                 );
63
64         register_dissector("data", dissect_data, proto_data);
65
66         /*
67          * "Data" is used to dissect something whose normal dissector
68          * is disabled, so it cannot itself be disabled.
69          */
70         proto_set_cant_disable(proto_data);
71 }