12345678910111213141516 |
- using System;
- namespace SMBLibrary.SMB2
- {
- [Flags]
- public enum ServerCapabilities : uint
- {
- DFS = 0x00000001,
- Leasing = 0x00000002,
- LargeMTU = 0x0000004,
- MultiChannel = 0x0000008,
- PersistentHandles = 0x00000010,
- DirectoryLeasing = 0x00000020,
- Encryption = 0x00000040,
- }
- }
|