aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-evs.c
diff options
context:
space:
mode:
authorAndersBroman <anders.broman@ericsson.com>2018-09-12 17:50:04 +0200
committerAnders Broman <a.broman58@gmail.com>2018-09-13 08:36:00 +0000
commit35e4bbe69111760a498286b8c56ca17b5f0d4f66 (patch)
treefb9e48ba731fff1690f38b266fa76a384bf33d8e /epan/dissectors/packet-evs.c
parent26d4ad2fa8fc9bd16ac9479109f05a7627828bd4 (diff)
evs: Put CMR "rate" in Info column.
Change-Id: I99447ac80751dea53849bd0575804dc7e74a27c5 Reviewed-on: https://code.wireshark.org/review/29638 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-evs.c')
-rw-r--r--epan/dissectors/packet-evs.c22
1 files changed, 17 insertions, 5 deletions
diff --git a/epan/dissectors/packet-evs.c b/epan/dissectors/packet-evs.c
index 1f069630a3..6e4d1ce1cf 100644
--- a/epan/dissectors/packet-evs.c
+++ b/epan/dissectors/packet-evs.c
@@ -308,12 +308,16 @@ static const true_false_string toc_evs_q_bit_vals = {
};
static void
-dissect_evs_cmr(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *evs_tree, int offset, guint8 t_bits)
+dissect_evs_cmr(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *evs_tree, int offset, guint8 cmr_oct)
{
proto_tree *tree;
+ const gchar *str;
+ guint8 t_bits = (cmr_oct & 0x70) >> 4;;
+ guint8 d_bits = (cmr_oct & 0x0f);
/* CMR */
tree = proto_tree_add_subtree(evs_tree, tvb, offset, 1, ett_evs_header, NULL, "CMR");
+
switch (t_bits) {
case 0:
{
@@ -324,6 +328,7 @@ dissect_evs_cmr(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *evs_tree, int
NULL
};
+ str = val_to_str_const(d_bits, evs_d_bits_t0_values, "Unknown value");
proto_tree_add_bitmask_list(tree, tvb, offset, 1, flags_t0, ENC_BIG_ENDIAN);
}
break;
@@ -336,6 +341,7 @@ dissect_evs_cmr(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *evs_tree, int
NULL
};
+ str = val_to_str_const(d_bits, evs_d_bits_t1_values, "Unknown value");
proto_tree_add_bitmask_list(tree, tvb, offset, 1, flags_t1, ENC_BIG_ENDIAN);
}
break;
@@ -348,6 +354,7 @@ dissect_evs_cmr(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *evs_tree, int
NULL
};
+ str = val_to_str_const(d_bits, evs_d_bits_t2_values, "Unknown value");
proto_tree_add_bitmask_list(tree, tvb, offset, 1, flags_t2, ENC_BIG_ENDIAN);
}
break;
@@ -360,6 +367,7 @@ dissect_evs_cmr(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *evs_tree, int
NULL
};
+ str = val_to_str_const(d_bits, evs_d_bits_t3_values, "Unknown value");
proto_tree_add_bitmask_list(tree, tvb, offset, 1, flags_t3, ENC_BIG_ENDIAN);
}
break;
@@ -372,6 +380,7 @@ dissect_evs_cmr(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *evs_tree, int
NULL
};
+ str = val_to_str_const(d_bits, evs_d_bits_t4_values, "Unknown value");
proto_tree_add_bitmask_list(tree, tvb, offset, 1, flags_t4, ENC_BIG_ENDIAN);
}
break;
@@ -384,6 +393,7 @@ dissect_evs_cmr(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *evs_tree, int
NULL
};
+ str = val_to_str_const(d_bits, evs_d_bits_t5_values, "Unknown value");
proto_tree_add_bitmask_list(tree, tvb, offset, 1, flags_t5, ENC_BIG_ENDIAN);
}
break;
@@ -396,6 +406,7 @@ dissect_evs_cmr(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *evs_tree, int
NULL
};
+ str = val_to_str_const(d_bits, evs_d_bits_t6_values, "Unknown value");
proto_tree_add_bitmask_list(tree, tvb, offset, 1, flags_t6, ENC_BIG_ENDIAN);
}
break;
@@ -408,6 +419,7 @@ dissect_evs_cmr(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *evs_tree, int
NULL
};
+ str = val_to_str_const(d_bits, evs_d_bits_t7_values, "Unknown value");
proto_tree_add_bitmask_list(tree, tvb, offset, 1, flags_t7, ENC_BIG_ENDIAN);
}
break;
@@ -415,7 +427,7 @@ dissect_evs_cmr(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *evs_tree, int
break;
}
-
+ col_append_fstr(pinfo->cinfo, COL_INFO, " %s ", str);
}
/* Code to actually dissect the packets */
@@ -428,7 +440,7 @@ dissect_evs(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_)
int packet_len, idx;
guint32 num_bits;
const gchar *str;
- guint8 oct, h_bit, t_bits, toc_f_bit, evs_mode_b;
+ guint8 oct, h_bit, toc_f_bit, evs_mode_b;
int num_toc;
/* Make entries in Protocol column and Info column on summary display */
@@ -461,11 +473,10 @@ dissect_evs(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_)
/*proto_tree_add_int_format(evs_tree, hf_evs_packet_length, tvb, offset, 1, packet_len * 8, "packet_len %i bits", packet_len * 8);*/
oct = tvb_get_guint8(tvb, offset);
h_bit = oct >> 7;
- t_bits = (oct & 0x70) >> 4;
if (h_bit == 1) {
/* `CMR */
- dissect_evs_cmr(tvb, pinfo, evs_tree, offset, t_bits);
+ dissect_evs_cmr(tvb, pinfo, evs_tree, offset, oct);
offset++;
}
/* ToC */
@@ -505,6 +516,7 @@ dissect_evs(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_)
offset++;
} while (toc_f_bit == 1);
+ proto_tree_add_item(evs_tree, hf_evs_voice_data, tvb, offset, -1, ENC_NA);
return packet_len;
}