OpLockLevel.cs 220 B

1234567891011
  1. namespace SMBLibrary.SMB1
  2. {
  3. public enum OpLockLevel : byte
  4. {
  5. NoOpLockGranted = 0x00,
  6. ExclusiveOpLockGranted = 0x01,
  7. BatchOpLockGranted = 0x02,
  8. Level2OpLockGranted = 0x03,
  9. }
  10. }