فهرست منبع

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)