"hf_sna_rh_csi" is now an FT_UINT8 field, so add it with
[obnox/wireshark/wip.git] / packet-clip.c
1 /* packet-clip.c
2  * Routines for clip packet disassembly
3  *
4  * $Id: packet-clip.c,v 1.13 2000/11/29 05:16:15 gram Exp $
5  *
6  * Ethereal - Network traffic analyzer
7  * By Gerald Combs <gerald@zing.org>
8  *
9  * This file created by Thierry Andry <Thierry.Andry@advalvas.be>
10  * from nearly-the-same packet-raw.c created by Mike Hall <mlh@io.com>
11  * Copyright 1999
12  * 
13  * This program is free software; you can redistribute it and/or
14  * modify it under the terms of the GNU General Public License
15  * as published by the Free Software Foundation; either version 2
16  * of the License, or (at your option) any later version.
17  * 
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  * 
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
26  */
27
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #ifdef HAVE_SYS_TYPES_H
33 # include <sys/types.h>
34 #endif
35
36 #include <glib.h>
37 #include "packet.h"
38 #include "packet-clip.h"
39 #include "packet-ip.h"
40
41 static gint ett_clip = -1;
42
43 static dissector_handle_t ip_handle;
44
45 void
46 capture_clip( const u_char *pd, packet_counts *ld ) {
47
48     capture_ip(pd, 0, ld);
49 }
50
51 static void
52 dissect_clip(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
53 {
54   proto_tree    *fh_tree;
55   proto_item    *ti;
56
57   pinfo->current_proto = "CLIP";
58
59   /* load the top pane info. This should be overwritten by
60      the next protocol in the stack */
61   if(check_col(pinfo->fd, COL_RES_DL_SRC))
62     col_set_str(pinfo->fd, COL_RES_DL_SRC, "N/A" );
63   if(check_col(pinfo->fd, COL_RES_DL_DST))
64     col_set_str(pinfo->fd, COL_RES_DL_DST, "N/A" );
65   if(check_col(pinfo->fd, COL_PROTOCOL))
66     col_set_str(pinfo->fd, COL_PROTOCOL, "CLIP" );
67   if(check_col(pinfo->fd, COL_INFO))
68     col_set_str(pinfo->fd, COL_INFO, "Classical IP frame" );
69
70   /* populate a tree in the second pane with the status of the link
71      layer (ie none)
72
73      XXX - the ATM on Linux code includes a patch to "tcpdump"
74      that compares the first few bytes of the packet with the
75      LLC header that Classical IP frames may have and, if there's
76      a SNAP LLC header at the beginning of the packet, it gets
77      the packet type from that header and uses that, otherwise
78      it treats the packet as being raw IP with no link-level
79      header. */
80   if(tree) {
81     ti = proto_tree_add_text(tree, tvb, 0, 0, "Classical IP frame" );
82     fh_tree = proto_item_add_subtree(ti, ett_clip);
83     proto_tree_add_text(fh_tree, tvb, 0, 0, "No link information available");
84   }
85   call_dissector(ip_handle, tvb, pinfo, tree);
86 }
87
88 void
89 proto_register_clip(void)
90 {
91   static gint *ett[] = {
92     &ett_clip,
93   };
94
95   proto_register_subtree_array(ett, array_length(ett));
96 }
97
98 void
99 proto_reg_handoff_clip(void)
100 {
101   /*
102    * Get a handle for the IP dissector.
103    */
104   ip_handle = find_dissector("ip");
105   dissector_add("wtap_encap", WTAP_ENCAP_LINUX_ATM_CLIP, dissect_clip);
106 }