aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-alcap.h
diff options
context:
space:
mode:
authorlego <lego@f5534014-38df-0310-8fa8-9805f1628bb7>2005-10-28 12:02:13 +0000
committerlego <lego@f5534014-38df-0310-8fa8-9805f1628bb7>2005-10-28 12:02:13 +0000
commit3ee94f02ce4db08bf2b1f6dc661cb956ae9fc906 (patch)
treea0d05d796dabd61286c823403bef6b0634604a52 /epan/dissectors/packet-alcap.h
parent00289560b6e6c7cbdedb58d5d30d0a6171c65214 (diff)
Came up to be an almost complete rewrite:
- decode up to Q.2630.3 - (almost) all parameter fields have its own filter expression - remove buffers from the stack - add some color (expert info) to the tree git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@16348 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-alcap.h')
-rw-r--r--epan/dissectors/packet-alcap.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/epan/dissectors/packet-alcap.h b/epan/dissectors/packet-alcap.h
index c8edb037ab..dada2a1998 100644
--- a/epan/dissectors/packet-alcap.h
+++ b/epan/dissectors/packet-alcap.h
@@ -21,7 +21,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-
+#include "packet-e164.h"
typedef struct _alcap_msg_data_t {
guint msg_type;
@@ -36,7 +36,8 @@ typedef struct _alcap_leg_info_t {
guint32 pathid;
guint32 cid;
guint32 sugr;
- gchar* nsap;
+ gchar* orig_nsap;
+ gchar* dest_nsap;
alcap_msg_data_t* msgs;
guint release_cause;
} alcap_leg_info_t;
@@ -49,7 +50,8 @@ typedef struct _alcap_message_info_t {
guint32 pathid;
guint32 cid;
guint32 sugr;
- gchar* nsap;
+ gchar* orig_nsap;
+ gchar* dest_nsap;
guint release_cause;
} alcap_message_info_t;