mirror of
https://github.com/TalAloni/SMBLibrary.git
synced 2025-08-04 15:01:28 +02:00
SMB Server v1.3.4
This commit is contained in:
parent
ee5e75f21e
commit
0227bf9528
3 changed files with 22 additions and 6 deletions
|
@ -10,7 +10,7 @@ using System.Runtime.InteropServices;
|
|||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("Tal Aloni")]
|
||||
[assembly: AssemblyProduct("SMBLibrary")]
|
||||
[assembly: AssemblyCopyright("Copyright © Tal Aloni 2014-2017")]
|
||||
[assembly: AssemblyCopyright("Copyright © Tal Aloni 2014-2018")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
|
@ -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.3.3.0")]
|
||||
[assembly: AssemblyFileVersion("1.3.3.0")]
|
||||
[assembly: AssemblyVersion("1.3.4.0")]
|
||||
[assembly: AssemblyFileVersion("1.3.4.0")]
|
||||
|
|
|
@ -366,3 +366,19 @@ Revision History:
|
|||
Server: Added an optional dead connection detection mechanism instead of simply disconnecting them after a specified duration of inactivity.
|
||||
Client: Discard all unsolicited responses except OpLock break.
|
||||
Bugfix: FormatException was thrown upon InvalidDataException in some cases.
|
||||
|
||||
1.3.4 - ShareAccess: Renamed enum members and added ShareAccess.None enum value.
|
||||
Minor logging improvements.
|
||||
SPNEGO: Minor improvements to SimpleProtectedNegotiationTokenInit implementation.
|
||||
SPNEGO: Added NegTokenInit2 implementation.
|
||||
Client: Login will now return SEC_E_INVALID_TOKEN if an invalid token is returned from the server instead of throwing NullReferenceException.
|
||||
Client: Fixed compatibility issue with Windows 8.1 / 10.
|
||||
Client: SMB2FileStore: SetFileInformation implementation.
|
||||
Win32Error: Added ERROR_NOT_SUPPORTED and ERROR_INVALID_LEVEL.
|
||||
RPC: FaultPDU parameterless constructor will now set Data to an empty byte array.
|
||||
RPC: RPCPDU PacketType variable is now protected.
|
||||
RPC: FaultPDU is now using FaultStatus enum.
|
||||
RPC: DataRepresentationFormat: Added constructor.
|
||||
Services: Minor improvements to ServerService and WorkstationService structures.
|
||||
Services: Added UnsupportedOpNumException.
|
||||
Services: ServerService, WorkstationService: Unsupported OpNums and Levels are now reported back to the client instead of NotImplementedException.
|
||||
|
|
|
@ -10,7 +10,7 @@ using System.Runtime.InteropServices;
|
|||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("Tal Aloni")]
|
||||
[assembly: AssemblyProduct("SMBServer")]
|
||||
[assembly: AssemblyCopyright("Copyright © Tal Aloni 2014-2017")]
|
||||
[assembly: AssemblyCopyright("Copyright © Tal Aloni 2014-2018")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
|
@ -29,5 +29,5 @@ using System.Runtime.InteropServices;
|
|||
// Build Number
|
||||
// Revision
|
||||
//
|
||||
[assembly: AssemblyVersion("1.3.3.0")]
|
||||
[assembly: AssemblyFileVersion("1.3.3.0")]
|
||||
[assembly: AssemblyVersion("1.3.4.0")]
|
||||
[assembly: AssemblyFileVersion("1.3.4.0")]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue