aboutsummaryrefslogtreecommitdiffstats
path: root/asn1
diff options
context:
space:
mode:
authorAndersBroman <anders.broman@ericsson.com>2014-03-27 17:48:19 +0100
committerAnders Broman <a.broman58@gmail.com>2014-03-27 16:54:05 +0000
commit9a977fc8d03238f083760205be0d980dccaf3ee7 (patch)
tree6e3bc0e4279f1904c6356aa5c26b563140004bc9 /asn1
parentd1bef2912590fc233637c4d0bf76a1b7194854e0 (diff)
Add dissection of 3G Interface Type package and add some comments about
the usage of variables in the h248_package_t struct. Change-Id: Ic5419ab5c20051e56963fe8ea1728d78f95538f0 Reviewed-on: https://code.wireshark.org/review/846 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'asn1')
-rw-r--r--asn1/h248/packet-h248-template.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/asn1/h248/packet-h248-template.h b/asn1/h248/packet-h248-template.h
index 1ce51341d9..c87ed51ab9 100644
--- a/asn1/h248/packet-h248-template.h
+++ b/asn1/h248/packet-h248-template.h
@@ -81,10 +81,10 @@ typedef struct _h248_pkg_stat_t {
} h248_pkg_stat_t;
typedef struct _h248_package_t {
- guint32 id;
- int* hfid;
- gint* ett;
- const value_string* param_names;
+ guint32 id; /**< Package ID */
+ int* hfid; /**< hfid that will display the package name */
+ gint* ett; /**< The ett for this item */
+ const value_string* param_names; /**< The parameter names, Value 00000 should be the package name */
const value_string* signal_names;
const value_string* event_names;
const value_string* stats_names;