Skip to content

Commit

Permalink
Merge pull request #18 from Dualog/enable-smb-dialects
Browse files Browse the repository at this point in the history
Enabled smb 3 dialects
  • Loading branch information
legendarymember authored Sep 2, 2024
2 parents 8a47c6c + d7c6611 commit f3aaa50
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions SMBLibrary/Client/SMB2Client.cs
Original file line number Diff line number Diff line change
Expand Up @@ -197,14 +197,10 @@ public SMB2Client()
request.Dialects.Add(SMB2Dialect.SMB202);
request.Dialects.Add(SMB2Dialect.SMB210);
request.Dialects.Add(SMB2Dialect.SMB300);
#if SMB302_CLIENT
request.Dialects.Add(SMB2Dialect.SMB302);
#endif
#if SMB311_CLIENT
request.Dialects.Add(SMB2Dialect.SMB311);
request.NegotiateContextList = GetNegotiateContextList();
m_preauthIntegrityHashValue = new byte[64];
#endif
await TrySendCommandAsync(request, cancellationToken);
var command = WaitForCommand(request.MessageID);

Expand Down

0 comments on commit f3aaa50

Please sign in to comment.