mirror of
https://github.com/TalAloni/SMBLibrary.git
synced 2025-07-05 17:23:18 +02:00
Server: Reduce maximum PDU size to 1 MB
This commit is contained in:
parent
eda010c37d
commit
7f7ca944ac
1 changed files with 3 additions and 3 deletions
|
@ -23,9 +23,9 @@ namespace SMBLibrary.Server.SMB2
|
|||
public const uint ServerMaxTransactSize = 65536;
|
||||
public const uint ServerMaxReadSize = 65536;
|
||||
public const uint ServerMaxWriteSize = 65536;
|
||||
public const uint ServerMaxTransactSizeLargeMTU = 8388608;
|
||||
public const uint ServerMaxReadSizeLargeMTU = 8388608;
|
||||
public const uint ServerMaxWriteSizeLargeMTU = 8388608;
|
||||
public const uint ServerMaxTransactSizeLargeMTU = 1048576;
|
||||
public const uint ServerMaxReadSizeLargeMTU = 1048576;
|
||||
public const uint ServerMaxWriteSizeLargeMTU = 1048576;
|
||||
|
||||
// Special case - SMB2 client initially connecting using SMB1
|
||||
internal static SMB2Command GetNegotiateResponse(List<string> smb2Dialects, GSSProvider securityProvider, ConnectionState state, SMBTransportType transportType, Guid serverGuid, DateTime serverStartTime)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue