Capabilities.cs 628 B

12345678910111213141516
  1. using System;
  2. namespace SMBLibrary.SMB2
  3. {
  4. [Flags]
  5. public enum Capabilities : uint
  6. {
  7. DFS = 0x00000001, // SMB2_GLOBAL_CAP_DFS
  8. Leasing = 0x00000002, // SMB2_GLOBAL_CAP_LEASING
  9. LargeMTU = 0x0000004, // SMB2_GLOBAL_CAP_LARGE_MTU
  10. MultiChannel = 0x0000008, // SMB2_GLOBAL_CAP_MULTI_CHANNEL
  11. PersistentHandles = 0x00000010, // SMB2_GLOBAL_CAP_PERSISTENT_HANDLES
  12. DirectoryLeasing = 0x00000020, // SMB2_GLOBAL_CAP_DIRECTORY_LEASING
  13. Encryption = 0x00000040, // SMB2_GLOBAL_CAP_ENCRYPTION (SMB 3.x)
  14. }
  15. }