aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-h248_10.c
diff options
context:
space:
mode:
authormorriss <morriss@f5534014-38df-0310-8fa8-9805f1628bb7>2012-06-20 13:30:07 +0000
committermorriss <morriss@f5534014-38df-0310-8fa8-9805f1628bb7>2012-06-20 13:30:07 +0000
commitc8391561bf16bde475344593e7987bc45c94944e (patch)
tree7f1ac290c1925812ef8d63c739a0e558ed2cd958 /epan/dissectors/packet-h248_10.c
parentade3bd548ae4b02c8cb9bb8344b9329997ed62d8 (diff)
Use separate filters for the RTT found on a SACK and the RTT found on a
DATA chunk: having them in both places is helpful when looking at the messages but having them separate is helpful when graphing the RTTs. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@43406 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-h248_10.c')
-rw-r--r--epan/dissectors/packet-h248_10.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/epan/dissectors/packet-h248_10.c b/epan/dissectors/packet-h248_10.c
index a48cc622f2..a43a0ea10e 100644
--- a/epan/dissectors/packet-h248_10.c
+++ b/epan/dissectors/packet-h248_10.c
@@ -46,6 +46,11 @@ static int hf_h248_CHP_mgcon_reduction = -1;
static gint ett_h248_CHP = -1;
static gint ett_h248_CHP_mgcon = -1;
+static const value_string h248_CHP_prop_vals[] = {
+ { 0, "chp (MG Congestion Handling)" },
+ { 0, NULL }
+};
+
static const value_string h248_CHP_events_vals[] = {
{1, "MGCon"},
{ 0, NULL }
@@ -73,7 +78,7 @@ static const h248_package_t h248_pkg_CHP = {
&proto_h248_CHP,
&ett_h248_CHP,
- NULL,
+ h248_CHP_prop_vals,
NULL,
h248_CHP_events_vals,
NULL,
@@ -102,7 +107,7 @@ void proto_register_h248_dot10(void) {
proto_register_subtree_array(ett, array_length(ett));
- h248_register_package(&h248_pkg_CHP);
+ h248_register_package(&h248_pkg_CHP,REPLACE_PKG);
}