Uses of Class
org.apache.sshd.sftp.client.impl.SftpResponse
-
Packages that use SftpResponse Package Description org.apache.sshd.sftp.client.impl -
-
Uses of SftpResponse in org.apache.sshd.sftp.client.impl
Methods in org.apache.sshd.sftp.client.impl that return SftpResponse Modifier and Type Method Description static SftpResponse
SftpResponse. parse(int cmd, Buffer buffer)
protected SftpResponse
AbstractSftpClient. response(int cmd, int requestId)
Receives a response buffer, validates and returns it as aSftpResponse
.protected SftpResponse
AbstractSftpClient. rpc(int cmd, Buffer request)
Perform an SFTP request and wait until the response has been received.Methods in org.apache.sshd.sftp.client.impl with parameters of type SftpResponse Modifier and Type Method Description protected SftpClient.Attributes
AbstractSftpClient. checkAttributesResponse(SftpResponse response)
protected int
AbstractSftpClient. checkDataResponse(SftpResponse response, int dstoff, byte[] dst, java.util.concurrent.atomic.AtomicReference<java.lang.Boolean> eofSignalled)
protected java.util.List<SftpClient.DirEntry>
AbstractSftpClient. checkDirResponse(SftpResponse response, java.util.concurrent.atomic.AtomicReference<java.lang.Boolean> eolIndicator)
protected byte[]
AbstractSftpClient. checkHandleResponse(SftpResponse response)
protected java.lang.String
AbstractSftpClient. checkOneNameResponse(SftpResponse response)
protected void
AbstractSftpClient. checkResponseStatus(SftpResponse response)
Checks if the incoming response is anSSH_FXP_STATUS
one, and if so whether the substatus isSSH_FX_OK
.protected SftpClient.Attributes
AbstractSftpClient. handleUnexpectedAttributesPacket(SftpResponse response)
protected byte[]
AbstractSftpClient. handleUnexpectedHandlePacket(SftpResponse response)
protected java.io.IOException
AbstractSftpClient. handleUnexpectedPacket(int expected, SftpResponse response)
protected int
AbstractSftpClient. handleUnknownDataPacket(SftpResponse response)
protected java.util.List<SftpClient.DirEntry>
AbstractSftpClient. handleUnknownDirListingPacket(SftpResponse response)
protected java.lang.String
AbstractSftpClient. handleUnknownOneNamePacket(SftpResponse response)
static SftpStatus
SftpStatus. parse(SftpResponse response)
-