From e8f7c60ec25fd6ab40357ad44baf98918346a22a Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Tue, 21 Dec 2010 18:07:52 -0800 Subject: My algorithm for determining whan an incoming sequence number can be allowed is incorrect. (I based it on the text in MS-SMB2, silly me :-). Fix it so incoming sequence numbers can range over the entire allowable bitmap range. This fixes a repeatable disconnect against Win7. Jeremy. --- source3/include/local.h | 1 + 1 file changed, 1 insertion(+) (limited to 'source3/include') diff --git a/source3/include/local.h b/source3/include/local.h index 3014f613b2..a8889af376 100644 --- a/source3/include/local.h +++ b/source3/include/local.h @@ -269,5 +269,6 @@ #define DEFAULT_SMB2_MAX_WRITE (1024*1024) #define DEFAULT_SMB2_MAX_TRANSACT (1024*1024) #define DEFAULT_SMB2_MAX_CREDITS 128 +#define DEFAULT_SMB2_MAX_CREDIT_BITMAP_FACTOR 2 #endif -- cgit