aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-h248.h
diff options
context:
space:
mode:
authorlego <lego@f5534014-38df-0310-8fa8-9805f1628bb7>2006-03-10 22:01:10 +0000
committerlego <lego@f5534014-38df-0310-8fa8-9805f1628bb7>2006-03-10 22:01:10 +0000
commita6fb219e7ab20010f840689836addc02f77ce1bd (patch)
tree634ebb44840e760472b7c6bf7639f81614ca41c7 /epan/dissectors/packet-h248.h
parentbbda944adf4040e918f8e19d8ab7725d1913803b (diff)
fix coverity CIDs 113 and 114.
while at it change the h248 context analysis to use se_trees instead of GHashTables git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17571 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-h248.h')
-rw-r--r--epan/dissectors/packet-h248.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/epan/dissectors/packet-h248.h b/epan/dissectors/packet-h248.h
index 73f42f3385..0155f5e0c6 100644
--- a/epan/dissectors/packet-h248.h
+++ b/epan/dissectors/packet-h248.h
@@ -72,8 +72,9 @@ typedef enum {
typedef struct _h248_msg_t {
- gchar* addr_label;
- guint framenum;
+ guint32 lo_addr;
+ guint32 hi_addr;
+ guint32 framenum;
struct _h248_trx_msg_t* trxs;
gboolean commited;
} h248_msg_t;
@@ -91,7 +92,7 @@ typedef struct _h248_cmd_msg_t {
} h248_cmd_msg_t;
typedef struct _h248_trx_t {
- gchar* key;
+ h248_msg_t* initial;
guint32 id;
h248_trx_type_t type;
guint pendings;
@@ -155,9 +156,8 @@ typedef struct _h248_cmd_t {
typedef struct _h248_ctx_t {
- gchar* key;
+ h248_msg_t* initial;
guint32 id;
- guint first_frame;
struct _h248_cmd_msg_t* cmds;
struct _h248_ctx_t* prev;
h248_terms_t terms;