aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-sccp.h
diff options
context:
space:
mode:
authorLuis Ontanon <luis.ontanon@gmail.com>2007-03-22 22:59:20 +0000
committerLuis Ontanon <luis.ontanon@gmail.com>2007-03-22 22:59:20 +0000
commit7f3e4fea48dad56d9ecfb73aab614233cdde5a0e (patch)
tree6986d6abf9e4fe13b040327b909b3e9ffa7bc795 /epan/dissectors/packet-sccp.h
parentdcb1e1bdfda07a49d09bc7cd977cefb37b358566 (diff)
Mine:
* add SUA to the "VoIP Calls" tap. * propagate changes to packet-sccp.h to other dissectors From Neil Piercy: * add SLR, DLR and CAUSE to COL_INFO svn path=/trunk/; revision=21126
Diffstat (limited to 'epan/dissectors/packet-sccp.h')
-rw-r--r--epan/dissectors/packet-sccp.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/epan/dissectors/packet-sccp.h b/epan/dissectors/packet-sccp.h
index 9e328a7b5e..50274592d2 100644
--- a/epan/dissectors/packet-sccp.h
+++ b/epan/dissectors/packet-sccp.h
@@ -50,6 +50,9 @@
WS_VAR_IMPORT const value_string sccp_message_type_acro_values[];
+/* from packet-sua.c */
+WS_VAR_IMPORT const value_string sua_co_class_type_acro_values[];
+
typedef enum _sccp_payload_t {
SCCP_PLOAD_NONE,
SCCP_PLOAD_BSSAP,
@@ -79,11 +82,14 @@ typedef struct _sccp_assoc_info_t {
sccp_msg_info_t* msgs;
sccp_msg_info_t* curr_msg;
- sccp_payload_t proto;
+ sccp_payload_t payload;
gchar* calling_party;
gchar* called_party;
gchar* extra_info;
} sccp_assoc_info_t;
+
+extern sccp_assoc_info_t* get_sccp_assoc(packet_info* pinfo, guint offset, guint32 src_lr, guint32 dst_lr, guint msg_type);
+
#endif