12345678910111213141516171819202122232425 |
- using System;
- namespace SMBLibrary.SMB1
- {
- [Flags]
- public enum HeaderFlags2 : ushort
- {
- LongNamesAllowed = 0x0001,
- ExtendedAttributes = 0x0002,
- SecuritySignature = 0x0004,
- CompressedData = 0x0008,
- SecuritySignatureRequired = 0x0010,
- LongNameUsed = 0x0040,
- ReparsePath = 0x400,
-
-
-
- ExtendedSecurity = 0x0800,
- DFS = 0x1000,
- ReadIfExecute = 0x2000,
- NTStatusCode = 0x4000,
- Unicode = 0x8000,
- }
- }
|