LogoutResponse.cs 203 B

1234567891011
  1. namespace ISCSI
  2. {
  3. public enum LogoutResponse
  4. {
  5. ClosedSuccessfully = 0,
  6. CIDNotFound = 1,
  7. ConnectionRecoveryNotSupported = 2,
  8. CleanupFailed = 3,
  9. }
  10. }