Browse Source

SMBServer: SMB1: Set SMB_FLAGS2_LONG_NAMES in NT_TRANSACT_NOTIFY_CHANGE response

Tal Aloni 7 years ago
parent
commit
cbce6b3662
1 changed files with 2 additions and 1 deletions
  1. 2 1
      SMBLibrary/Server/SMB1/NotifyChangeHelper.cs

+ 2 - 1
SMBLibrary/Server/SMB1/NotifyChangeHelper.cs

@@ -57,9 +57,10 @@ namespace SMBLibrary.Server.SMB1
                 header.Command = CommandName.SMB_COM_NT_TRANSACT;
                 header.Status = status;
                 header.Flags = HeaderFlags.CaseInsensitive | HeaderFlags.CanonicalizedPaths | HeaderFlags.Reply;
+                // [MS-CIFS] SMB_FLAGS2_LONG_NAMES SHOULD be set to 1 when the negotiated dialect is NT LANMAN.
                 // [MS-CIFS] SMB_FLAGS2_UNICODE SHOULD be set to 1 when the negotiated dialect is NT LANMAN.
                 // [MS-CIFS] The Windows NT Server implementation of NT_TRANSACT_NOTIFY_CHANGE always returns the names of changed files in Unicode format.
-                header.Flags2 = HeaderFlags2.Unicode | HeaderFlags2.NTStatusCode;
+                header.Flags2 = HeaderFlags2.LongNamesAllowed | HeaderFlags2.NTStatusCode | HeaderFlags2.Unicode;
                 header.UID = asyncContext.UID;
                 header.TID = asyncContext.TID;
                 header.PID = asyncContext.PID;