From: Christian Ambach Date: Tue, 28 Feb 2012 05:33:13 +0000 (-0800) Subject: s3:smb2_server increase defaults for read/write/trans sizes to 1MB X-Git-Tag: tdb-1.2.10~278 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6d128aac119d948f0ecb0dcf6b400b4eb4027fe6;p=thirdparty%2Fsamba.git s3:smb2_server increase defaults for read/write/trans sizes to 1MB Signed-off-by: Jeremy Allison --- diff --git a/source3/include/local.h b/source3/include/local.h index 281248c0e40..11166df5f07 100644 --- a/source3/include/local.h +++ b/source3/include/local.h @@ -232,9 +232,9 @@ #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