Explorar o código

SMB2Header: Initalize Signature field on creation, added SignatureOffset constant

Tal Aloni %!s(int64=8) %!d(string=hai) anos
pai
achega
6bb9aa323b
Modificáronse 1 ficheiros con 3 adicións e 0 borrados
  1. 3 0
      SMBLibrary/SMB2/SMB2Header.cs

+ 3 - 0
SMBLibrary/SMB2/SMB2Header.cs

@@ -12,6 +12,8 @@ namespace SMBLibrary.SMB2
     public class SMB2Header
     {
         public const int Length = 64;
+        public const int SignatureOffset = 48;
+
         public static readonly byte[] ProtocolSignature = new byte[] { 0xFE, 0x53, 0x4D, 0x42 };
 
         public byte[] ProtocolId; // 4 bytes, 0xFE followed by "SMB"
@@ -34,6 +36,7 @@ namespace SMBLibrary.SMB2
             ProtocolId = ProtocolSignature;
             StructureSize = Length;
             Command = commandName;
+            Signature = new byte[16];
         }
 
         public SMB2Header(byte[] buffer, int offset)