mirror of
https://github.com/TalAloni/SMBLibrary.git
synced 2025-04-30 10:47:48 +02:00
Updated OptionalSupportFlags to include all flags
This commit is contained in:
parent
0bcb921f84
commit
0ed07c27d4
1 changed files with 10 additions and 1 deletions
|
@ -8,6 +8,15 @@ namespace SMBLibrary.SMB1
|
|||
/// <summary>
|
||||
/// The server supports the use of SMB_FILE_ATTRIBUTES exclusive search attributes in client requests.
|
||||
/// </summary>
|
||||
SMB_SUPPORT_SEARCH_BITS = 0x01,
|
||||
SMB_SUPPORT_SEARCH_BITS = 0x0001,
|
||||
SMB_SHARE_IS_IN_DFS = 0x0002,
|
||||
|
||||
SMB_CSC_CACHE_MANUAL_REINT = 0x0000, // SMB_CSC_MASK = 0
|
||||
SMB_CSC_CACHE_AUTO_REINT = 0x0004, // SMB_CSC_MASK = 1
|
||||
SMB_CSC_CACHE_VDO = 0x0008, // SMB_CSC_MASK = 2
|
||||
SMB_CSC_NO_CACHING = 0x000C, // SMB_CSC_MASK = 3
|
||||
|
||||
SMB_UNIQUE_FILE_NAME = 0x0010,
|
||||
SMB_EXTENDED_SIGNATURES = 0x0020,
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue