Uses of Class
net.schmizz.sshj.common.Message
-
-
Uses of Message in net.schmizz.sshj
Methods in net.schmizz.sshj with parameters of type Message Modifier and Type Method Description void
AbstractService. handle(Message msg, SSHPacket buf)
-
Uses of Message in net.schmizz.sshj.common
Fields in net.schmizz.sshj.common declared as Message Modifier and Type Field Description private static Message[]
Message. cache
Methods in net.schmizz.sshj.common that return Message Modifier and Type Method Description static Message
Message. fromByte(byte b)
Message
SSHPacket. readMessageID()
Reads an SSH byte and returns it asMessage
static Message
Message. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Message[]
Message. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in net.schmizz.sshj.common with parameters of type Message Modifier and Type Method Description void
SSHPacketHandler. handle(Message msg, SSHPacket buf)
Delegate handling of some SSH packet to this object.SSHPacket
SSHPacket. putMessageID(Message msg)
Writes a byte indicating the SSH message identifierConstructors in net.schmizz.sshj.common with parameters of type Message Constructor Description SSHPacket(Message msg)
Constructs new buffer for the specified SSH packet and reserves the needed space (5 bytes) for the packet header. -
Uses of Message in net.schmizz.sshj.connection
Methods in net.schmizz.sshj.connection with parameters of type Message Modifier and Type Method Description void
ConnectionImpl. handle(Message msg, SSHPacket buf)
-
Uses of Message in net.schmizz.sshj.connection.channel
Methods in net.schmizz.sshj.connection.channel with parameters of type Message Modifier and Type Method Description protected void
AbstractChannel. gotUnknown(Message msg, SSHPacket buf)
void
AbstractChannel. handle(Message msg, SSHPacket buf)
protected SSHPacket
AbstractChannel. newBuffer(Message cmd)
-
Uses of Message in net.schmizz.sshj.connection.channel.direct
Methods in net.schmizz.sshj.connection.channel.direct with parameters of type Message Modifier and Type Method Description protected void
AbstractDirectChannel. gotUnknown(Message cmd, SSHPacket buf)
-
Uses of Message in net.schmizz.sshj.transport
Fields in net.schmizz.sshj.transport declared as Message Modifier and Type Field Description private Message
TransportImpl. msg
Message identifier of last packet receivedMethods in net.schmizz.sshj.transport with parameters of type Message Modifier and Type Method Description private static void
KeyExchanger. ensureReceivedMatchesExpected(Message got, Message expected)
void
KeyExchanger. handle(Message msg, SSHPacket buf)
void
TransportImpl. handle(Message msg, SSHPacket buf)
This is where all incoming packets are handled.private static boolean
TransportImpl. isKexerPacket(Message msg)
-
Uses of Message in net.schmizz.sshj.transport.kex
Methods in net.schmizz.sshj.transport.kex with parameters of type Message Modifier and Type Method Description boolean
AbstractDHG. next(Message msg, SSHPacket packet)
boolean
AbstractDHGex. next(Message msg, SSHPacket buffer)
boolean
KeyExchange. next(Message msg, SSHPacket buffer)
Process the next packet -
Uses of Message in net.schmizz.sshj.userauth
Methods in net.schmizz.sshj.userauth with parameters of type Message Modifier and Type Method Description void
UserAuthImpl. handle(Message msg, SSHPacket buf)
-
Uses of Message in net.schmizz.sshj.userauth.method
Methods in net.schmizz.sshj.userauth.method with parameters of type Message Modifier and Type Method Description void
AbstractAuthMethod. handle(Message msg, SSHPacket buf)
void
AuthGssApiWithMic. handle(Message cmd, SSHPacket buf)
void
AuthKeyboardInteractive. handle(Message cmd, SSHPacket buf)
void
AuthPassword. handle(Message cmd, SSHPacket buf)
void
AuthPublickey. handle(Message cmd, SSHPacket buf)
Internal use.
-