aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rtsp.c
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2005-09-28 22:15:38 +0000
committerUlf Lamping <ulf.lamping@web.de>2005-09-28 22:15:38 +0000
commit9a42ef953625a6de31a00df68a53e3108be284d3 (patch)
tree12a2398cb326cde04e237a368606b49674342907 /epan/dissectors/packet-rtsp.c
parentf9a96d8a16793aeedbd74b141a4f2b754a5f1fb1 (diff)
fix #480: Change defaults for all reassembling settings to ON
I've changed all settings I could find to TRUE. It might be reasonable to change some protocol settings back to FALSE, if reassembling fails very often. svn path=/trunk/; revision=16048
Diffstat (limited to 'epan/dissectors/packet-rtsp.c')
-rw-r--r--epan/dissectors/packet-rtsp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-rtsp.c b/epan/dissectors/packet-rtsp.c
index 46cd8921fd..3587e22c6d 100644
--- a/epan/dissectors/packet-rtsp.c
+++ b/epan/dissectors/packet-rtsp.c
@@ -77,14 +77,14 @@ void proto_reg_handoff_rtsp(void);
* desegmentation of RTSP headers
* (when we are over TCP or another protocol providing the desegmentation API)
*/
-static gboolean rtsp_desegment_headers = FALSE;
+static gboolean rtsp_desegment_headers = TRUE;
/*
* desegmentation of RTSP bodies
* (when we are over TCP or another protocol providing the desegmentation API)
* TODO let the user filter on content-type the bodies he wants desegmented
*/
-static gboolean rtsp_desegment_body = FALSE;
+static gboolean rtsp_desegment_body = TRUE;
/* http://www.iana.org/assignments/port-numberslists two rtsp ports */
#define TCP_PORT_RTSP 554