|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of Buffer in org.apache.sshd.agent |
---|
Methods in org.apache.sshd.agent that return Buffer | |
---|---|
protected Buffer |
AgentClient.createBuffer(byte cmd)
|
protected Buffer |
AgentClient.request(Buffer buffer)
|
Methods in org.apache.sshd.agent with parameters of type Buffer | |
---|---|
protected OpenFuture |
ChannelAgentForwarding.doInit(Buffer buffer)
|
void |
ChannelAgentForwarding.handleRequest(Buffer buffer)
|
void |
AgentServer.SshAgentSession.messageReceived(Buffer message)
|
protected void |
AgentClient.messageReceived(Buffer buffer)
|
protected void |
AgentServer.SshAgentSession.process(Buffer req,
Buffer rep)
|
protected void |
AgentServer.SshAgentSession.reply(Buffer buf)
|
protected Buffer |
AgentClient.request(Buffer buffer)
|
Uses of Buffer in org.apache.sshd.client |
---|
Methods in org.apache.sshd.client with parameters of type Buffer | |
---|---|
UserAuth.Result |
UserAuth.next(Buffer buffer)
|
Uses of Buffer in org.apache.sshd.client.auth |
---|
Methods in org.apache.sshd.client.auth with parameters of type Buffer | |
---|---|
UserAuth.Result |
UserAuthPassword.next(Buffer buffer)
|
UserAuth.Result |
UserAuthAgent.next(Buffer buffer)
|
UserAuth.Result |
UserAuthPublicKey.next(Buffer buffer)
|
Uses of Buffer in org.apache.sshd.client.channel |
---|
Methods in org.apache.sshd.client.channel with parameters of type Buffer | |
---|---|
void |
AbstractClientChannel.handleOpenFailure(Buffer buffer)
|
void |
AbstractClientChannel.handleOpenSuccess(int recipient,
int rwsize,
int rmpsize,
Buffer buffer)
|
void |
AbstractClientChannel.handleRequest(Buffer buffer)
|
OpenFuture |
AbstractClientChannel.open(int recipient,
int rwsize,
int rmpsize,
Buffer buffer)
|
Uses of Buffer in org.apache.sshd.client.kex |
---|
Methods in org.apache.sshd.client.kex with parameters of type Buffer | |
---|---|
boolean |
AbstractDHGClient.next(Buffer buffer)
|
Uses of Buffer in org.apache.sshd.client.session |
---|
Methods in org.apache.sshd.client.session with parameters of type Buffer | |
---|---|
protected void |
ClientSessionImpl.doHandleMessage(Buffer buffer)
|
protected void |
ClientSessionImpl.handleMessage(Buffer buffer)
|
protected boolean |
ClientSessionImpl.readIdentification(Buffer buffer)
|
Uses of Buffer in org.apache.sshd.common |
---|
Methods in org.apache.sshd.common that return Buffer | |
---|---|
Buffer |
Session.createBuffer(SshConstants.Message cmd,
int estimatedSize)
Create a new buffer for the specified SSH packet and reserve the needed space (5 bytes) for the packet header. |
Methods in org.apache.sshd.common with parameters of type Buffer | |
---|---|
void |
Compression.compress(Buffer buffer)
Compress the given buffer in place. |
void |
Channel.handleData(Buffer buffer)
|
void |
Channel.handleExtendedData(Buffer buffer)
|
void |
Channel.handleOpenFailure(Buffer buffer)
For a client channel, this method will be called internally by the session when the server has rejected this channel opening. |
void |
Channel.handleOpenSuccess(int recipient,
int rwsize,
int rmpsize,
Buffer buffer)
For a client channel, this method will be called internally by the session when the confirmation has been received. |
void |
Channel.handleRequest(Buffer buffer)
|
void |
Channel.handleWindowAdjust(Buffer buffer)
|
boolean |
KeyExchange.next(Buffer buffer)
Process the next packet |
OpenFuture |
Channel.open(int recipient,
int rwsize,
int rmpsize,
Buffer buffer)
For a server channel, this method will actually open the channel |
void |
Compression.uncompress(Buffer from,
Buffer to)
Uncompress the data in a buffer into another buffer. |
org.apache.mina.core.future.WriteFuture |
Session.writePacket(Buffer buffer)
Encode and send the given buffer. |
Uses of Buffer in org.apache.sshd.common.channel |
---|
Methods in org.apache.sshd.common.channel with parameters of type Buffer | |
---|---|
void |
AbstractChannel.handleData(Buffer buffer)
|
void |
AbstractChannel.handleExtendedData(Buffer buffer)
|
void |
AbstractChannel.handleRequest(Buffer buffer)
|
void |
AbstractChannel.handleWindowAdjust(Buffer buffer)
|
Uses of Buffer in org.apache.sshd.common.compression |
---|
Methods in org.apache.sshd.common.compression with parameters of type Buffer | |
---|---|
void |
CompressionZlib.compress(Buffer buffer)
|
void |
CompressionZlib.uncompress(Buffer from,
Buffer to)
|
Uses of Buffer in org.apache.sshd.common.session |
---|
Fields in org.apache.sshd.common.session declared as Buffer | |
---|---|
protected Buffer |
AbstractSession.decoderBuffer
|
protected Buffer |
AbstractSession.uncompressBuffer
|
Methods in org.apache.sshd.common.session that return Buffer | |
---|---|
Buffer |
AbstractSession.createBuffer(SshConstants.Message cmd,
int len)
Create a new buffer for the specified SSH packet and reserve the needed space (5 bytes) for the packet header. |
Methods in org.apache.sshd.common.session with parameters of type Buffer | |
---|---|
protected void |
AbstractSession.channelClose(Buffer buffer)
Close a channel due to a close packet received |
protected void |
AbstractSession.channelData(Buffer buffer)
Process incoming data on a channel |
protected void |
AbstractSession.channelEof(Buffer buffer)
Process end of file on a channel |
protected void |
AbstractSession.channelExtendedData(Buffer buffer)
Process incoming extended data on a channel |
protected void |
AbstractSession.channelFailure(Buffer buffer)
Process a failure on a channel |
protected void |
AbstractSession.channelOpenConfirmation(Buffer buffer)
|
protected void |
AbstractSession.channelOpenFailure(Buffer buffer)
|
protected void |
AbstractSession.channelRequest(Buffer buffer)
Service a request on a channel |
protected void |
AbstractSession.channelWindowAdjust(Buffer buffer)
Process a window adjust packet on a channel |
protected String |
AbstractSession.doReadIdentification(Buffer buffer)
Read the remote identification from this buffer. |
protected Channel |
AbstractSession.getChannel(Buffer buffer)
Retrieve the channel designated by the given packet |
protected abstract void |
AbstractSession.handleMessage(Buffer buffer)
Abstract method for processing incoming decoded packets. |
protected abstract boolean |
AbstractSession.readIdentification(Buffer buffer)
Read the other side identification. |
protected byte[] |
AbstractSession.receiveKexInit(Buffer buffer,
String[] proposal)
Receive the remote key exchange init message. |
org.apache.mina.core.future.WriteFuture |
AbstractSession.writePacket(Buffer buffer)
Encode and send the given buffer. |
Uses of Buffer in org.apache.sshd.common.util |
---|
Methods in org.apache.sshd.common.util with parameters of type Buffer | |
---|---|
void |
Buffer.putBuffer(Buffer buffer)
|
Uses of Buffer in org.apache.sshd.server |
---|
Methods in org.apache.sshd.server with parameters of type Buffer | |
---|---|
Boolean |
UserAuth.auth(ServerSession session,
String username,
Buffer buffer)
Try to authenticate the user. |
Boolean |
HandshakingUserAuth.next(ServerSession session,
SshConstants.Message msg,
Buffer buffer)
Handle another step in the authentication process. |
Uses of Buffer in org.apache.sshd.server.auth |
---|
Methods in org.apache.sshd.server.auth with parameters of type Buffer | |
---|---|
Boolean |
UserAuthPassword.auth(ServerSession session,
String username,
Buffer buffer)
|
Boolean |
UserAuthNone.auth(ServerSession session,
String username,
Buffer buffer)
|
Boolean |
UserAuthPublicKey.auth(ServerSession session,
String username,
Buffer buffer)
|
Uses of Buffer in org.apache.sshd.server.auth.gss |
---|
Methods in org.apache.sshd.server.auth.gss with parameters of type Buffer | |
---|---|
Boolean |
UserAuthGSS.auth(ServerSession sess,
String user,
Buffer buff)
Handle the first authentication step. |
Boolean |
UserAuthGSS.next(ServerSession session,
SshConstants.Message msg,
Buffer buffer)
Handle another step in the authentication process. |
Uses of Buffer in org.apache.sshd.server.channel |
---|
Methods in org.apache.sshd.server.channel with parameters of type Buffer | |
---|---|
protected OpenFuture |
AbstractServerChannel.doInit(Buffer buffer)
|
protected OpenFuture |
ChannelDirectTcpip.doInit(Buffer buffer)
|
protected boolean |
ChannelSession.handleAgentForwarding(Buffer buffer)
|
protected boolean |
ChannelSession.handleEnv(Buffer buffer)
|
protected boolean |
ChannelSession.handleExec(Buffer buffer)
|
void |
AbstractServerChannel.handleOpenFailure(Buffer buffer)
|
void |
AbstractServerChannel.handleOpenSuccess(int recipient,
int rwsize,
int rmpsize,
Buffer buffer)
|
protected boolean |
ChannelSession.handlePtyReq(Buffer buffer)
|
void |
ChannelDirectTcpip.handleRequest(Buffer buffer)
|
void |
ChannelSession.handleRequest(Buffer buffer)
|
protected boolean |
ChannelSession.handleRequest(String type,
Buffer buffer)
|
protected boolean |
ChannelSession.handleShell(Buffer buffer)
|
protected boolean |
ChannelSession.handleSignal(Buffer buffer)
|
protected boolean |
ChannelSession.handleSubsystem(Buffer buffer)
|
protected boolean |
ChannelSession.handleWindowChange(Buffer buffer)
|
protected boolean |
ChannelSession.handleX11Forwarding(Buffer buffer)
|
OpenFuture |
AbstractServerChannel.open(int recipient,
int rwsize,
int rmpsize,
Buffer buffer)
|
Uses of Buffer in org.apache.sshd.server.kex |
---|
Methods in org.apache.sshd.server.kex with parameters of type Buffer | |
---|---|
boolean |
AbstractDHGServer.next(Buffer buffer)
|
Uses of Buffer in org.apache.sshd.server.session |
---|
Methods in org.apache.sshd.server.session with parameters of type Buffer | |
---|---|
protected void |
ServerSession.handleMessage(Buffer buffer)
|
protected boolean |
ServerSession.readIdentification(Buffer buffer)
|
Uses of Buffer in org.apache.sshd.server.sftp |
---|
Methods in org.apache.sshd.server.sftp with parameters of type Buffer | |
---|---|
protected void |
SftpSubsystem.process(Buffer buffer)
|
protected void |
SftpSubsystem.send(Buffer buffer)
|
protected void |
SftpSubsystem.writeAttrs(Buffer buffer,
SshFile file)
|
protected void |
SftpSubsystem.writeAttrs(Buffer buffer,
SshFile file,
int flags)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |