aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-h248.h
diff options
context:
space:
mode:
authorLuis Ontanon <luis.ontanon@gmail.com>2007-03-18 21:55:00 +0000
committerLuis Ontanon <luis.ontanon@gmail.com>2007-03-18 21:55:00 +0000
commit151b3273684c9a8e04cc209fc859f167c2127ea8 (patch)
tree3eebbbb2b4ba274b4ff32f71531653e058e98e38 /epan/dissectors/packet-h248.h
parent7a7e743627ff2d1dce38905670ed0c0adfcd5c3b (diff)
add a tap to h248
svn path=/trunk/; revision=21055
Diffstat (limited to 'epan/dissectors/packet-h248.h')
-rw-r--r--epan/dissectors/packet-h248.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/epan/dissectors/packet-h248.h b/epan/dissectors/packet-h248.h
index c2398c094d..067a20c258 100644
--- a/epan/dissectors/packet-h248.h
+++ b/epan/dissectors/packet-h248.h
@@ -61,6 +61,10 @@
/*#include "packet-h248-exp.h"*/
+#define NULL_CONTEXT 0
+#define CHOOSE_CONTEXT 0xFFFFFFFE
+#define ALL_CONTEXTS 0xFFFFFFFF
+
typedef enum {
H248_CMD_NONE,
H248_CMD_ADD_REQ,
@@ -169,6 +173,7 @@ typedef struct _h248_terms_t {
typedef struct _h248_cmd_t {
guint offset;
+ gchar* str;
h248_cmd_type_t type;
h248_terms_t terms;
struct _h248_msg_t* msg;
@@ -181,7 +186,7 @@ typedef struct _h248_cmd_t {
typedef struct _h248_ctx_t {
h248_msg_t* initial;
guint32 id;
- struct _h248_cmd_msg_t* cmds;
+ struct _h248_cmd_msg_t* cmds;
struct _h248_ctx_t* prev;
h248_terms_t terms;
} h248_ctx_t;