aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rpc.c
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2008-07-19 20:17:42 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2008-07-19 20:17:42 +0000
commit6946f1878f3172913cf771a931517c194d895b64 (patch)
treeee012a65063d4b1f0d064a1e152314be25989f74 /epan/dissectors/packet-rpc.c
parent1ddf33b72093ad3de01bf0e206f0f22176abfce9 (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. svn path=/trunk/; revision=25769
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,