using System;
namespace SMBLibrary.SMB1
{
[Flags]
public enum Open2Flags : ushort
{
///
/// Return additional information in the response;
/// populate the CreationTime, FileDataSize, AccessMode, ResourceType, and NMPipeStatus fields in the response.
///
REQ_ATTRIB = 0x0001,
///
/// Exclusive OpLock requested.
///
REQ_OPLOCK = 0x0002,
///
/// Batch OpLock requested.
///
REQ_OPBATCH = 0x0004,
///
/// Return total length of Extended Attributes (EAs);
/// populate the ExtendedAttributeLength field in the response.
///
REQ_EASIZE = 0x0008,
}
}