Declare routines exported to plugins through the plugin API table as
[metze/wireshark/wip.git] / epan / conversation.h
1 /* conversation.h
2  * Routines for building lists of packets that are part of a "conversation"
3  *
4  * $Id: conversation.h,v 1.8 2001/11/04 03:55:52 guy Exp $
5  *
6  * Ethereal - Network traffic analyzer
7  * By Gerald Combs <gerald@ethereal.com>
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
25 #ifndef __CONVERSATION_H__
26 #define __CONVERSATION_H__
27
28 /* 
29  * Flags to pass to "conversation_new()" to indicate that the address 2
30  * and/or port 2 values for the conversation should be wildcards.
31  */
32 #define NO_ADDR2 0x01
33 #define NO_PORT2 0x02
34
35 /* 
36  * Flags to pass to "find_conversation()" to indicate that the address B
37  * and/or port B search arguments are wildcards.
38  */
39 #define NO_ADDR_B 0x01
40 #define NO_PORT_B 0x02
41
42 #include "packet.h"             /* for conversation dissector type */
43
44 /*
45  * Data structure representing a conversation.
46  */
47 typedef struct conversation_key {
48         struct conversation_key *next;
49         address addr1;
50         address addr2;
51         port_type ptype;
52         guint32 port1;
53         guint32 port2;
54 } conversation_key;
55
56 typedef struct conversation {
57         struct conversation *next;      /* pointer to next conversation on hash chain */
58         guint32 index;                  /* unique ID for conversation */
59         GSList *data_list;              /* list of data associated with conversation */
60         dissector_t dissector;          /* protocol dissector client can associate with conversation */
61         guint   options;                /* wildcard flags */
62         conversation_key *key_ptr;      /* pointer to the key for this conversation */
63 } conversation_t;
64
65 extern void conversation_init(void);
66
67 extern conversation_t *conversation_new(address *addr1, address *addr2,
68     port_type ptype, guint32 port1, guint32 port2, guint options);
69
70 extern conversation_t *find_conversation(address *addr_a, address *addr_b,
71     port_type ptype, guint32 port_a, guint32 port_b, guint options);
72
73 extern void conversation_add_proto_data(conversation_t *conv, int proto,
74     void *proto_data);
75 extern void *conversation_get_proto_data(conversation_t *conv, int proto);
76 extern void conversation_delete_proto_data(conversation_t *conv, int proto);
77
78 extern void conversation_set_dissector(conversation_t *conversation,
79     dissector_t dissector);
80 extern gboolean
81 try_conversation_dissector(address *addr_a, address *addr_b, port_type ptype,
82     guint32 port_a, guint32 port_b, tvbuff_t *tvb, packet_info *pinfo,
83     proto_tree *tree);
84
85 /* These routines are used to set undefined values for a conversation */
86
87 extern void conversation_set_port2(conversation_t *conv, guint32 port);
88 extern void conversation_set_addr2(conversation_t *conv, address *addr);
89
90 #endif /* conversation.h */