diff --git a/SMBLibrary/Properties/AssemblyInfo.cs b/SMBLibrary/Properties/AssemblyInfo.cs index 2d3636c..d7c16df 100644 --- a/SMBLibrary/Properties/AssemblyInfo.cs +++ b/SMBLibrary/Properties/AssemblyInfo.cs @@ -31,5 +31,5 @@ using System.Runtime.InteropServices; // // You can specify all the values or you can default the Revision and Build Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("1.1.5.0")] -[assembly: AssemblyFileVersion("1.1.5.0")] +[assembly: AssemblyVersion("1.1.6.0")] +[assembly: AssemblyFileVersion("1.1.6.0")] diff --git a/SMBLibrary/RevisionHistory.txt b/SMBLibrary/RevisionHistory.txt index 2fcc7e2..3878474 100644 --- a/SMBLibrary/RevisionHistory.txt +++ b/SMBLibrary/RevisionHistory.txt @@ -110,3 +110,16 @@ Revision History: SMB2: Correctly report server start time in SMB_NEGOTIATE response. SMB2: Retrieve SessionKey from GSS mechanism and store it in SMB2Session. SMB2: Enable message signing if client request it. + +1.1.6 - SMBServer: Added server Start / Stop log entries. + SMBServer: Hid internal methods and classes. + SMBServer: Each connection now use a dedicaded thread for send operations. + SMBServer: TCP KeepAlive is now used to detect dead clients. + SMBServer: All matching opened files will now be closed during tree disconnect. + SMBServer: All matching opened files will now be closed during logoff. + SMBServer: All matching opened files will now be closed during connection termination. + SMBServer API: Moved socket parameters to the Start method. + SMBServer API: Added GetSessionsInformation method + SMB1: Retrieve SessionKey from GSS mechanism and store it in SMB1Session. + Bugfix: Independent / Integrated NTLMAuthenticationProvider: MachineName was not read from AuthenticationMessage. + GSS: Minor improvements. diff --git a/SMBServer/Properties/AssemblyInfo.cs b/SMBServer/Properties/AssemblyInfo.cs index a85a701..7b4ed78 100644 --- a/SMBServer/Properties/AssemblyInfo.cs +++ b/SMBServer/Properties/AssemblyInfo.cs @@ -29,5 +29,5 @@ using System.Runtime.InteropServices; // Build Number // Revision // -[assembly: AssemblyVersion("1.1.5.0")] -[assembly: AssemblyFileVersion("1.1.5.0")] +[assembly: AssemblyVersion("1.1.6.0")] +[assembly: AssemblyFileVersion("1.1.6.0")]