Put
[metze/wireshark/wip.git] / epan / next_tvb.h
1 /* next_tvb.h
2  * Definitions for "next tvb" list
3  *
4  * $Id$
5  *
6  * Wireshark - Network traffic analyzer
7  * By Gerald Combs <gerald@wireshark.org>
8  * Copyright 1998 Gerald Combs
9  *
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License
12  * as published by the Free Software Foundation; either version 2
13  * of the License, or (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
23  */
24 /* The buffers returned by these functions are all allocated with a 
25  * packet lifetime or are static buffers and does not have have to be freed. 
26  * However, take into account that when the packet dissection
27  * completes, these buffers will be automatically reclaimed/freed.
28  * If you need the buffer to remain for a longer scope than packet lifetime
29  * you must copy the content to an se_alloc() buffer.
30  */
31
32 #ifndef __NEXT_TVB_H__
33 #define __NEXT_TVB_H__
34
35 typedef enum {
36   NTVB_HANDLE,
37   NTVB_PORT,
38   NTVB_STRING
39 } next_tvb_call_e;
40
41 typedef struct next_tvb_item {
42   struct next_tvb_item *next;
43   struct next_tvb_item *previous;
44   next_tvb_call_e type;
45   dissector_handle_t handle;
46   dissector_table_t table;
47   guint32 port;
48   const gchar *string;
49   tvbuff_t *tvb;
50   proto_tree *tree;
51 } next_tvb_item_t;
52
53 typedef struct {
54   next_tvb_item_t *first;
55   next_tvb_item_t *last;
56   int count;
57 } next_tvb_list_t;
58
59 extern void next_tvb_init(next_tvb_list_t *list);
60 extern void next_tvb_add_handle(next_tvb_list_t *list, tvbuff_t *tvb, proto_tree *tree, dissector_handle_t handle);
61 extern void next_tvb_add_port(next_tvb_list_t *list, tvbuff_t *tvb, proto_tree *tree, dissector_table_t table, guint32 port);
62 extern void next_tvb_add_string(next_tvb_list_t *list, tvbuff_t *tvb, proto_tree *tree, dissector_table_t table, const gchar *string);
63 extern void next_tvb_call(next_tvb_list_t *list, packet_info *pinfo, proto_tree *tree, dissector_handle_t handle, dissector_handle_t data_handle);
64
65 #endif /* __NEXT_TVB_H__ */