Update documentation about iptrace version support.
[metze/wireshark/wip.git] / packet-data.c
1 /* packet-data.c
2  * Routines for raw data (default case)
3  * Gilbert Ramirez <gram@verdict.uthscsa.edu>
4  *
5  * $Id: packet-data.c,v 1.11 1999/08/26 17:51:44 guy Exp $
6  *
7  * Ethereal - Network traffic analyzer
8  * By Gerald Combs <gerald@unicom.net>
9  * Copyright 1998 Gerald Combs
10  *
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 #ifdef HAVE_SYS_TYPES_H
32 # include <sys/types.h>
33 #endif
34
35 #include <glib.h>
36 #include "packet.h"
37
38 /* proto_data cannot be static because it's referenced in the
39  * print routines
40  */
41 int proto_data = -1;
42
43 void
44 dissect_data(const u_char *pd, int offset, frame_data *fd, proto_tree *tree) {
45
46         if (fd->cap_len > offset && tree) {
47                 proto_tree_add_item_format(tree, proto_data, offset,
48                         END_OF_FRAME, NULL, "Data (%d byte%s)", END_OF_FRAME,
49                         plurality(END_OF_FRAME, "", "s"));
50         }
51 }
52
53 void
54 proto_register_data(void)
55 {
56         proto_data = proto_register_protocol (
57                 /* name */      "Data",
58                 /* abbrev */    "data" );
59 }