LoginResponseStatusClassName.cs 709 B

12345678910111213141516171819202122232425
  1. namespace ISCSI
  2. {
  3. public enum LoginResponseStatusName : ushort
  4. {
  5. Success = 0x00,
  6. TargetMovedTemporarily = 0x101,
  7. TargetMovedPermanently = 0x102,
  8. InitiatorError = 0x200,
  9. AuthenticationFailure = 0x201,
  10. AuthorizationFailure = 0x202,
  11. NotFound = 0x203,
  12. TargetRemoved = 0x204,
  13. UnsupportedVersion = 0x205,
  14. TooManyConnections = 0x206,
  15. MissingParameter = 0x207,
  16. CanNotIncludeInSession = 0x208,
  17. SessionTypeNotSupported = 0x209,
  18. SessionDoesNotExist = 0x20a,
  19. InvalidDuringLogon = 0x20b,
  20. TargetError = 0x300,
  21. ServiceUnavailable = 0x301,
  22. OutOfResources = 0x302,
  23. }
  24. }