aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-h248.h
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2006-10-04 22:43:38 +0000
committerAnders Broman <anders.broman@ericsson.com>2006-10-04 22:43:38 +0000
commit1677b21838469e7a83abcb60cc6612fb59b5f821 (patch)
tree5134afbc9f34c63f9714c3a6a96ed05a5d4b3c84 /epan/dissectors/packet-h248.h
parent662d1c90fa103070f6907693cdb2ebc2e91a31f5 (diff)
Added the possibillity of Statistic pkg as well.
svn path=/trunk/; revision=19436
Diffstat (limited to 'epan/dissectors/packet-h248.h')
-rw-r--r--epan/dissectors/packet-h248.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/epan/dissectors/packet-h248.h b/epan/dissectors/packet-h248.h
index fd8355cec1..4f72939b84 100644
--- a/epan/dissectors/packet-h248.h
+++ b/epan/dissectors/packet-h248.h
@@ -218,6 +218,13 @@ typedef struct _h248_pkg_evt_t {
h248_pkg_param_t* parameters;
} h248_pkg_evt_t;
+typedef struct _h248_pkg_stat_t {
+ guint32 id;
+ int* hfid;
+ gint* ett;
+ h248_pkg_param_t* parameters;
+} h248_pkg_stat_t;
+
typedef struct _h248_package_t {
guint32 id;
int* hfid;
@@ -226,6 +233,7 @@ typedef struct _h248_package_t {
h248_pkg_param_t* properties;
h248_pkg_sig_t* signals;
h248_pkg_evt_t* events;
+ h248_pkg_stat_t* statistics;
} h248_package_t;
struct _h248_curr_info_t {
@@ -237,6 +245,7 @@ struct _h248_curr_info_t {
h248_package_t* pkg;
h248_pkg_evt_t* evt;
h248_pkg_sig_t* sig;
+ h248_pkg_stat_t* stat;
h248_pkg_param_t* par;
};