aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2013-09-21 16:27:55 +0000
committerEvan Huus <eapache@gmail.com>2013-09-21 16:27:55 +0000
commit8abfcaea798bba1c4d1db2092d94d3b6bc3e932f (patch)
tree01a42e08da92af6a94bd0fae838f2e89a78bca73
parent514b38fbdd2a1208dd424f7a53090e000c9af320 (diff)
Lower the default RTMPT max reassembly size. A bigger bandaid for
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6898 svn path=/trunk/; revision=52163
-rw-r--r--epan/dissectors/packet-rtmpt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-rtmpt.c b/epan/dissectors/packet-rtmpt.c
index 3a481efbe7..56b0445b2f 100644
--- a/epan/dissectors/packet-rtmpt.c
+++ b/epan/dissectors/packet-rtmpt.c
@@ -149,7 +149,7 @@ static gboolean rtmpt_desegment = TRUE;
* is really needed.
* See https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6898
*/
-static guint rtmpt_max_packet_size = 262144;
+static guint rtmpt_max_packet_size = 32768;
#define RTMP_PORT 1935