12345678910111213141516171819202122232425262728293031 |
- using System;
- namespace SMBLibrary.SMB1
- {
- [Flags]
- public enum ServerCapabilities : uint
- {
- RawMode = 0x00000001,
- MPXMode = 0x00000002,
- Unicode = 0x00000004,
- LargeFiles = 0x00000008,
- NTSMB = 0x00000010,
- RpcRemoteApi = 0x00000020,
- NTStatusCode = 0x00000040,
- Level2Oplocks = 0x00000080,
- LockAndRead = 0x00000100,
- NTFind = 0x00000200,
- DFS = 0x00001000,
- InfoLevelPassthrough = 0x00002000,
- LargeRead = 0x00004000,
- LargeWrite = 0x00008000,
- LightWeightIO = 0x00010000,
- Unix = 0x00800000,
- DynamicReauthentication = 0x20000000,
-
-
-
-
- ExtendedSecurity = 0x80000000,
- }
- }
|