RejectReason.cs 562 B

12345678910111213141516171819
  1. namespace ISCSI
  2. {
  3. public enum RejectReason : byte
  4. {
  5. Reserved = 0x01,
  6. DataDigestError = 0x02,
  7. SnackReject = 0x03,
  8. ProtocolError = 0x04,
  9. CommandNotSupported = 0x05,
  10. ImmediateCommandReject = 0x06, // too many immediate commands
  11. TaskInProgress = 0x07,
  12. InvalidDataAck = 0x08,
  13. InvalidPDUField = 0x09,
  14. LongOperationReject = 0x0A, // Can't generate Target Transfer Tag - out of resources
  15. NegotiationReset = 0x0B,
  16. WaitingforLogout = 0x0C,
  17. }
  18. }