aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-alcap.h
diff options
context:
space:
mode:
authorLuis Ontanon <luis.ontanon@gmail.com>2005-09-15 19:30:44 +0000
committerLuis Ontanon <luis.ontanon@gmail.com>2005-09-15 19:30:44 +0000
commit756421af732f5f83e16cd990c039e94ab1647c8e (patch)
tree498bb51a886ead3a6f4083b41ab7dc26b60c8742 /epan/dissectors/packet-alcap.h
parentfd0583761388494d02f7efbf942a9ce182389ca0 (diff)
Add more information regarding call legs.
Make the release cause value filterable. svn path=/trunk/; revision=15826
Diffstat (limited to 'epan/dissectors/packet-alcap.h')
-rw-r--r--epan/dissectors/packet-alcap.h14
1 files changed, 12 insertions, 2 deletions
diff --git a/epan/dissectors/packet-alcap.h b/epan/dissectors/packet-alcap.h
index 7acd36634e..c8edb037ab 100644
--- a/epan/dissectors/packet-alcap.h
+++ b/epan/dissectors/packet-alcap.h
@@ -21,6 +21,15 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
+
+
+typedef struct _alcap_msg_data_t {
+ guint msg_type;
+ guint framenum;
+ struct _alcap_msg_data_t* next;
+ struct _alcap_msg_data_t* last;
+} alcap_msg_data_t;
+
typedef struct _alcap_leg_info_t {
guint32 dsaid;
guint32 osaid;
@@ -28,8 +37,8 @@ typedef struct _alcap_leg_info_t {
guint32 cid;
guint32 sugr;
gchar* nsap;
- guint erq;
- guint rlc;
+ alcap_msg_data_t* msgs;
+ guint release_cause;
} alcap_leg_info_t;
@@ -41,5 +50,6 @@ typedef struct _alcap_message_info_t {
guint32 cid;
guint32 sugr;
gchar* nsap;
+ guint release_cause;
} alcap_message_info_t;