]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
s3:smb2_server increase defaults for read/write/trans sizes to 1MB
authorChristian Ambach <ambi@samba.org>
Tue, 28 Feb 2012 05:33:13 +0000 (21:33 -0800)
committerJeremy Allison <jra@samba.org>
Sat, 10 Mar 2012 00:48:15 +0000 (16:48 -0800)
Signed-off-by: Jeremy Allison <jra@samba.org>
source3/include/local.h

index 281248c0e40e1813ea66e36b2e9ac61b9c97b62c..11166df5f076d42571f8802db639fd6bfcc176e1 100644 (file)
 #define CLIENT_NDR_PADDING_SIZE 8
 #define SERVER_NDR_PADDING_SIZE 8
 
-#define DEFAULT_SMB2_MAX_READ (64*1024)
-#define DEFAULT_SMB2_MAX_WRITE (64*1024)
-#define DEFAULT_SMB2_MAX_TRANSACT (64*1024)
+#define DEFAULT_SMB2_MAX_READ (1024*1024)
+#define DEFAULT_SMB2_MAX_WRITE (1024*1024)
+#define DEFAULT_SMB2_MAX_TRANSACT (1024*1024)
 #define DEFAULT_SMB2_MAX_CREDITS 8192
 #define DEFAULT_SMB2_MAX_CREDIT_BITMAP_FACTOR 2