Trivial warning fixes
[obnox/wireshark/wip.git] / epan / dissectors / packet-tpkt.h
1 /* packet-tpkt.h
2  *
3  * Routines for TPKT dissection
4  *
5  * Copyright 2000, Philips Electronics N.V.
6  * Andreas Sikkema <andreas.sikkema@philips.com>
7  *
8  * $Id$
9  *
10  * Wireshark - Network traffic analyzer
11  * By Gerald Combs <gerald@wireshark.org>
12  * Copyright 1998 Gerald Combs
13  *
14  * This program is free software; you can redistribute it and/or
15  * modify it under the terms of the GNU General Public License
16  * as published by the Free Software Foundation; either version 2
17  * of the License, or (at your option) any later version.
18  *
19  * This program is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU General Public License for more details.
23  *
24  * You should have received a copy of the GNU General Public License
25  * along with this program; if not, write to the Free Software
26  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
27  */
28
29 /*
30  * Check whether this could be a TPKT-encapsulated PDU.
31  * Returns -1 if it's not, and the PDU length from the TPKT header
32  * if it is.
33  *
34  * "min_len" is the minimum length of the PDU; the length field in the
35  * TPKT header must be at least "4+min_len" in order for this to be a
36  * valid TPKT PDU for the protocol in question.
37  */
38 static const int TEXT_LAYER_LENGTH   = 9;
39
40 extern int is_tpkt(tvbuff_t *tvb, int min_len);
41
42 /*
43  * Dissect TPKT-encapsulated data in a TCP stream.
44  */
45 extern void dissect_tpkt_encap(tvbuff_t *tvb, packet_info *pinfo,
46     proto_tree *tree, gboolean desegment,
47     dissector_handle_t subdissector_handle);
48
49
50 /*
51  * Check whether this could be a ASCII TPKT-encapsulated PDU.
52  * Returns -1 if it's not, and the PDU length from the TPKT header
53  * if it is.
54  *
55  * "min_len" is the minimum length of the PDU; the length field in the
56  * TPKT header must be at least "8+min_len" in order for this to be a
57  * valid TPKT PDU for the protocol in question.
58  */
59
60 extern guint16 is_asciitpkt(tvbuff_t *tvb);
61
62 /*
63  * Dissect ASCII TPKT-encapsulated data in a TCP stream.
64  */
65 extern void dissect_asciitpkt(tvbuff_t *tvb, packet_info *pinfo,
66     proto_tree *tree, dissector_handle_t subdissector_handle);
67