SMBLibrary 1.5.3

This commit is contained in:
Tal Aloni 2024-06-25 22:48:48 +03:00
parent 7ecc9e667a
commit f446549dd3
5 changed files with 10 additions and 4 deletions

View file

@ -3,7 +3,7 @@
<PropertyGroup> <PropertyGroup>
<TargetFrameworks>net20;net40;netstandard2.0</TargetFrameworks> <TargetFrameworks>net20;net40;netstandard2.0</TargetFrameworks>
<AssemblyName>SMBLibrary.Adapters</AssemblyName> <AssemblyName>SMBLibrary.Adapters</AssemblyName>
<Version>1.5.2</Version> <Version>1.5.3</Version>
<NoWarn>1573;1591</NoWarn> <NoWarn>1573;1591</NoWarn>
<RootNamespace>SMBLibrary.Adapters</RootNamespace> <RootNamespace>SMBLibrary.Adapters</RootNamespace>
<Authors>Tal Aloni</Authors> <Authors>Tal Aloni</Authors>

View file

@ -3,7 +3,7 @@
<PropertyGroup> <PropertyGroup>
<TargetFrameworks>net20;net40;netstandard2.0</TargetFrameworks> <TargetFrameworks>net20;net40;netstandard2.0</TargetFrameworks>
<AssemblyName>SMBLibrary.Win32</AssemblyName> <AssemblyName>SMBLibrary.Win32</AssemblyName>
<Version>1.5.2</Version> <Version>1.5.3</Version>
<NoWarn>1573;1591</NoWarn> <NoWarn>1573;1591</NoWarn>
<RootNamespace>SMBLibrary.Win32</RootNamespace> <RootNamespace>SMBLibrary.Win32</RootNamespace>
<Authors>Tal Aloni</Authors> <Authors>Tal Aloni</Authors>

View file

@ -504,3 +504,9 @@ Revision History:
SMB2Client: Support non-Microsoft servers returning MaxReadSize > MaxTransactSize SMB2Client: Support non-Microsoft servers returning MaxReadSize > MaxTransactSize
NBTConnectionReceiveBuffer: Fix thread-safety issues. NBTConnectionReceiveBuffer: Fix thread-safety issues.
FileRenameInformationType2: Bugfix: Ensure length is at least 24 bytes. FileRenameInformationType2: Bugfix: Ensure length is at least 24 bytes.
1.5.3 - Server: SMBServer: Mark overloaded Start method as protected internal.
Client: Mark overloaded Start method as protected internal.
Client: Improve client response time when server disconnects or return invalid data.
Client: Fix possible NullReferenceException when disconnection occur during directory enumeration.
Client: SMB1FileStore, SMB2FileStore: Return STATUS_IO_TIMEOUT instead of STATUS_INVALID_SMB when server does not reply and there is no protocol violation.

View file

@ -3,7 +3,7 @@
<PropertyGroup> <PropertyGroup>
<TargetFrameworks>net20;net40;netstandard2.0</TargetFrameworks> <TargetFrameworks>net20;net40;netstandard2.0</TargetFrameworks>
<AssemblyName>SMBLibrary</AssemblyName> <AssemblyName>SMBLibrary</AssemblyName>
<Version>1.5.2</Version> <Version>1.5.3</Version>
<NoWarn>1573;1591</NoWarn> <NoWarn>1573;1591</NoWarn>
<RootNamespace>SMBLibrary</RootNamespace> <RootNamespace>SMBLibrary</RootNamespace>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild> <GeneratePackageOnBuild>false</GeneratePackageOnBuild>

View file

@ -5,7 +5,7 @@
<TargetFrameworks>net20;net40;netcoreapp3.1</TargetFrameworks> <TargetFrameworks>net20;net40;netcoreapp3.1</TargetFrameworks>
<Copyright>Copyright © Tal Aloni 2014-2024</Copyright> <Copyright>Copyright © Tal Aloni 2014-2024</Copyright>
<AssemblyName>SMBServer</AssemblyName> <AssemblyName>SMBServer</AssemblyName>
<Version>1.5.2</Version> <Version>1.5.3</Version>
<RootNamespace>SMBServer</RootNamespace> <RootNamespace>SMBServer</RootNamespace>
<UseWindowsForms>true</UseWindowsForms> <UseWindowsForms>true</UseWindowsForms>
</PropertyGroup> </PropertyGroup>