SMB1: NTTransactSubcommandName: Added NT_TRANSACT_QUERY_QUOTA and NT_TRANSACT_SET_QUOTA

This commit is contained in:
Tal Aloni 2017-09-27 14:17:02 +03:00
parent e8f3545729
commit 420c2264d0

View file

@ -2,7 +2,7 @@
namespace SMBLibrary.SMB1
{
/// <summary>
/// This is the Function field in NTTransactRequest
/// This is the Function field in SMB_COM_NT_TRANSACT request
/// </summary>
public enum NTTransactSubcommandName : ushort
{
@ -12,5 +12,7 @@ namespace SMBLibrary.SMB1
NT_TRANSACT_NOTIFY_CHANGE = 0x0004,
// NT_TRANSACT_RENAME = 0x0005,
NT_TRANSACT_QUERY_SECURITY_DESC = 0x0006,
NT_TRANSACT_QUERY_QUOTA = 0x0007,
NT_TRANSACT_SET_QUOTA = 0x0008,
}
}