aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rpc.c
diff options
context:
space:
mode:
authormorriss <morriss@f5534014-38df-0310-8fa8-9805f1628bb7>2008-07-19 20:17:42 +0000
committermorriss <morriss@f5534014-38df-0310-8fa8-9805f1628bb7>2008-07-19 20:17:42 +0000
commitd59f0d5a48b9996ac1eb744ff7fcc71131acfd8b (patch)
treeee012a65063d4b1f0d064a1e152314be25989f74 /epan/dissectors/packet-rpc.c
parented1afc13748287ec1c1cce97cec28d1917c80192 (diff)
From https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2723
Tigran Mkrtchyan: decode and display fattr4_fs_layout_types. Thijs Stuurman: Synchronize names used by wireshark with those used in latest pnfs draft. J. Bruce Fields: Use large default max_rpc_tcp_pdu_size setting The linux server will do up to 1M these days, so the current default is very likely to discard all reads and writes from such a server. Thanks to Jim Rees for catching this. Jeff Morriss: limit the max_rpc_tcp_pdu_size increase to 4M instead of the 16M proposed. Memory is cheap but still not unlimited. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@25769 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-rpc.c')
-rw-r--r--epan/dissectors/packet-rpc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-rpc.c b/epan/dissectors/packet-rpc.c
index a38f64ee9a..c13af6a18f 100644
--- a/epan/dissectors/packet-rpc.c
+++ b/epan/dissectors/packet-rpc.c
@@ -257,7 +257,7 @@ static dissector_handle_t rpc_handle;
static dissector_handle_t gssapi_handle;
static dissector_handle_t data_handle;
-static guint max_rpc_tcp_pdu_size = 262144;
+static guint max_rpc_tcp_pdu_size = 4 * 1024 * 1024;
static const fragment_items rpc_frag_items = {
&ett_rpc_fragment,