You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a handshake status is not SUCCESS and the drive proceeds to terminate the connection the client returns Connection closed by peer instead of the error cause informed by the drive.
A specific DeviceLocked error should be added.
DEVICE_LOCKED is a valid status code on secure connections and does not cause the socket to be closed.
A client should fail during connect() with DeviceLocked if the device returns status DEVICE_LOCKED and the connection is not secured.
The generic RemoteError(STATUS_CODE) should be returned with any other status that is not SUCCESS.
The text was updated successfully, but these errors were encountered:
When a handshake status is not
SUCCESS
and the drive proceeds to terminate the connection the client returnsConnection closed by peer
instead of the error cause informed by the drive.DeviceLocked
error should be added.DEVICE_LOCKED
is a valid status code on secure connections and does not cause the socket to be closed.connect()
withDeviceLocked
if the device returns statusDEVICE_LOCKED
and the connection is not secured.RemoteError(STATUS_CODE)
should be returned with any other status that is notSUCCESS
.The text was updated successfully, but these errors were encountered: