aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rtpproxy.c
diff options
context:
space:
mode:
authorPeter Lemenkov <lemenkov@gmail.com>2015-05-22 16:20:10 +0300
committerAnders Broman <a.broman58@gmail.com>2015-05-26 15:10:38 +0000
commit27f16ade806b572519b702cb478b0c634278653b (patch)
treece861f3a75314e13a92fe01d81cc96da0bb5e9f0 /epan/dissectors/packet-rtpproxy.c
parent3d3c854215bbe670ae03af67c0ca1272a8467f13 (diff)
[RTPproxy] Remove non-existent reply
This reply message was never implemented anywhere. Current protocol spec doesn't mention this type of a reply either: * https://github.com/sippy/rtpproxy/wiki/RTPP-%28RTPproxy-protocol%29-technical-specification#information So we should remove this. Change-Id: I4e5efef24c6859d5a4a0ba08e3e4cca6d7b217f2 Signed-off-by: Peter Lemenkov <lemenkov@gmail.com> Reviewed-on: https://code.wireshark.org/review/8656 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-rtpproxy.c')
-rw-r--r--epan/dissectors/packet-rtpproxy.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/epan/dissectors/packet-rtpproxy.c b/epan/dissectors/packet-rtpproxy.c
index 8371707b77..90d66a6ae5 100644
--- a/epan/dissectors/packet-rtpproxy.c
+++ b/epan/dissectors/packet-rtpproxy.c
@@ -769,7 +769,6 @@ dissect_rtpproxy(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data
proto_tree_add_item(rtpproxy_tree, hf_rtpproxy_notify_tag, tvb, offset, realsize - offset, ENC_ASCII | ENC_NA);
}
break;
- case 'a':
case 'e':
case '0':
case '1':
@@ -803,12 +802,6 @@ dissect_rtpproxy(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data
break;
}
- if (tmp == 'a'){
- /* A specific case - short statistics answer */
- /* %COOKIE% active sessions: %NUM1% */
- proto_tree_add_item(rtpproxy_tree, hf_rtpproxy_status, tvb, offset, realsize - offset, ENC_ASCII | ENC_NA);
- break;
- }
if ((tmp == '0')&& ((tvb_reported_length(tvb) == (guint)(offset+1))||(tvb_reported_length(tvb) == (guint)(offset+2)))){
proto_tree_add_item(rtpproxy_tree, hf_rtpproxy_ok, tvb, offset, 1, ENC_ASCII | ENC_NA);
break;