소스 검색

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)