SetInformationLevel.cs 395 B

12345678910111213
  1. namespace SMBLibrary.SMB1
  2. {
  3. public enum SetInformationLevel : ushort
  4. {
  5. SMB_INFO_STANDARD = 0x0001, // LANMAN2.0
  6. SMB_INFO_SET_EAS = 0x0002, // LANMAN2.0
  7. SMB_SET_FILE_BASIC_INFO = 0x0101,
  8. SMB_SET_FILE_DISPOSITION_INFO = 0x0102,
  9. SMB_SET_FILE_ALLOCATION_INFO = 0x0103,
  10. SMB_SET_FILE_END_OF_FILE_INFO = 0x0104,
  11. }
  12. }