aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-iax2.h
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2017-11-11 17:16:13 -0500
committerAnders Broman <a.broman58@gmail.com>2017-11-13 05:21:36 +0000
commit800b26edbe34e135cc9be1d4395db2c13ae1213f (patch)
treefae0a8da631334bde17966a4e7a6a5c0f4491f71 /epan/dissectors/packet-iax2.h
parent7c40580584eac67a23633e58810028dddc58781c (diff)
Remove circuit API
Replace with conversation API that limits the "endpoint" to a single uint32 value. The intention is to eventually have "layered" endpoints, because circuit_id was used in cases where src/dest port have already been populated (and are used for layers above). Those src/dest ports should just be treated as just another endpoint, but we currently only have support for one. Change-Id: Ic6aa7ef0241275aa4dfde9459194369b48c72960 Reviewed-on: https://code.wireshark.org/review/24369 Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-iax2.h')
-rw-r--r--epan/dissectors/packet-iax2.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/dissectors/packet-iax2.h b/epan/dissectors/packet-iax2.h
index fd926a8a80..a1c0f293f9 100644
--- a/epan/dissectors/packet-iax2.h
+++ b/epan/dissectors/packet-iax2.h
@@ -26,6 +26,7 @@
#define __PACKET_IAX2_H__
#include <epan/tap-voip.h>
+#include <epan/conversation.h>
/* Max version of IAX protocol we support */
#define IAX_PROTO_VERSION 2
@@ -255,7 +256,7 @@ typedef struct _iax2_info_t
/* Container for passing data between dissectors */
typedef struct _iax2_dissector_info_t
{
- circuit_type ctype;
+ endpoint_type etype;
guint32 circuit_id;
} iax2_dissector_info_t;