浏览代码

Minor code refactoring

Tal Aloni 7 年之前
父节点
当前提交
a25c75fb52
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. 1 1
      SMBLibrary/SMB2/Commands/LogoffRequest.cs
  2. 1 1
      SMBLibrary/SMB2/Commands/LogoffResponse.cs

+ 1 - 1
SMBLibrary/SMB2/Commands/LogoffRequest.cs

@@ -22,7 +22,7 @@ namespace SMBLibrary.SMB2
 
         public LogoffRequest() : base(SMB2CommandName.Logoff)
         {
-            StructureSize = 4;
+            StructureSize = DeclaredSize;
         }
 
         public LogoffRequest(byte[] buffer, int offset) : base(buffer, offset)

+ 1 - 1
SMBLibrary/SMB2/Commands/LogoffResponse.cs

@@ -23,7 +23,7 @@ namespace SMBLibrary.SMB2
         public LogoffResponse() : base(SMB2CommandName.Logoff)
         {
             Header.IsResponse = true;
-            StructureSize = 4;
+            StructureSize = DeclaredSize;
         }
 
         public LogoffResponse(byte[] buffer, int offset) : base(buffer, offset)