SessionSetupAction.cs 227 B

1234567891011
  1. using System;
  2. namespace SMBLibrary.SMB1
  3. {
  4. [Flags]
  5. public enum SessionSetupAction : ushort
  6. {
  7. SetupGuest = 0x01, // SMB_SETUP_GUEST
  8. UseLanmanKey = 0x02, // SMB_SETUP_USE_LANMAN_KEY
  9. }
  10. }