Uses of Class
net.schmizz.sshj.transport.TransportException
Packages that use TransportException
Package
Description
-
Uses of TransportException in net.schmizz.keepalive
Methods in net.schmizz.keepalive that throw TransportExceptionModifier and TypeMethodDescriptionprotected abstract voidKeepAlive.doKeepAlive()protected voidKeepAliveRunner.doKeepAlive() -
Uses of TransportException in net.schmizz.sshj
Methods in net.schmizz.sshj that throw TransportExceptionModifier and TypeMethodDescriptionvoidSSHClient.auth(String username, Iterable<AuthMethod> methods) Authenticateusernameusing the suppliedmethods.voidSSHClient.auth(String username, AuthMethod... methods) Authenticateusernameusing the suppliedmethods.voidSSHClient.authGssApiWithMic(String username, LoginContext context, Oid supportedOid, Oid... supportedOids) Authenticateusernameusing the"gssapi-with-mic"authentication method, given a login context for the peer GSS machine and a list of supported OIDs.voidSSHClient.authPassword(String username, char[] password) Authenticateusernameusing the"password"authentication method and as a fallback basic challenge-response authentication..voidSSHClient.authPassword(String username, String password) Authenticateusernameusing the"password"authentication method and as a fallback basic challenge-response authentication.voidSSHClient.authPassword(String username, PasswordFinder pfinder) Authenticateusernameusing the"password"authentication method and as a fallback basic challenge-response authentication.voidSSHClient.authPassword(String username, PasswordFinder pfinder, PasswordUpdateProvider newPasswordProvider) Authenticateusernameusing the"password"authentication method and as a fallback basic challenge-response authentication.voidSSHClient.authPublickey(String username) Authenticateusernameusing the"publickey"authentication method, with keys from some common locations on the file system.voidSSHClient.authPublickey(String username, Iterable<KeyProvider> keyProviders) Authenticateusernameusing the"publickey"authentication method.voidSSHClient.authPublickey(String username, String... locations) Authenticateusernameusing the"publickey"authentication method, with keys from one or morelocationsin the file system.voidSSHClient.authPublickey(String username, KeyProvider... keyProviders) Authenticateusernameusing the"publickey"authentication method.protected voidSSHClient.doKex()Do key exchange.voidSSHClient.rekey()Does key re-exchange.voidAbstractService.request()voidService.request()Request and install this service with the associated transport.SSHClient.startSession()voidSSHClient.useCompression()Addszlibcompression to preferred compression algorithms. -
Uses of TransportException in net.schmizz.sshj.connection
Methods in net.schmizz.sshj.connection that throw TransportExceptionModifier and TypeMethodDescriptionConnection.sendGlobalRequest(String name, boolean wantReply, byte[] specifics) Send an SSH global request.ConnectionImpl.sendGlobalRequest(String name, boolean wantReply, byte[] specifics) voidConnection.sendOpenFailure(int recipient, OpenFailException.Reason reason, String message) Send aSSH_MSG_OPEN_FAILUREfor specifiedReasonandmessage.voidConnectionImpl.sendOpenFailure(int recipient, OpenFailException.Reason reason, String message) -
Uses of TransportException in net.schmizz.sshj.connection.channel
Methods in net.schmizz.sshj.connection.channel that throw TransportExceptionModifier and TypeMethodDescriptionvoidAbstractChannel.close()voidChannel.close()Close this channel.voidChannel.Forwarded.confirm()ConfirmCHANNEL_OPENrequest.protected voidAbstractChannel.gotUnknown(Message msg, SSHPacket buf) protected voidAbstractChannel.handleRequest(String reqType, SSHPacket buf) voidChannel.Direct.open()Request opening this channel from remote end.voidChannel.Forwarded.reject(OpenFailException.Reason reason, String message) Indicate rejection to remote end.voidAbstractChannel.TransportRunnable.run()protected Event<ConnectionException> AbstractChannel.sendChannelRequest(String reqType, boolean wantReply, Buffer.PlainBuffer reqSpecific) protected voidAbstractChannel.sendClose() -
Uses of TransportException in net.schmizz.sshj.connection.channel.direct
Methods in net.schmizz.sshj.connection.channel.direct that throw TransportExceptionModifier and TypeMethodDescriptionvoidSession.allocateDefaultPTY()Allocates a default PTY.voidSessionChannel.allocateDefaultPTY()voidSession.allocatePTY(String term, int cols, int rows, int width, int height, Map<PTYMode, Integer> modes) Allocate a psuedo-terminal for this session.voidSessionChannel.allocatePTY(String term, int cols, int rows, int width, int height, Map<PTYMode, Integer> modes) voidSession.Shell.changeWindowDimensions(int cols, int rows, int width, int height) Sends a window dimension change message.voidSessionChannel.changeWindowDimensions(int cols, int rows, int width, int height) Execute a remote command.protected voidAbstractDirectChannel.gotUnknown(Message cmd, SSHPacket buf) voidSessionChannel.handleRequest(String req, SSHPacket buf) voidAbstractDirectChannel.open()voidSession.reqX11Forwarding(String authProto, String authCookie, int screen) Request X11 forwarding.voidSessionChannel.reqX11Forwarding(String authProto, String authCookie, int screen) voidSet an environment variable.voidvoidSend a signal to the remote command.voidSend a signal.voidSession.startShell()Request a shell.SessionChannel.startShell()Session.startSubsystem(String name) Request a subsystem.SessionChannel.startSubsystem(String name) -
Uses of TransportException in net.schmizz.sshj.connection.channel.forwarded
Methods in net.schmizz.sshj.connection.channel.forwarded that throw TransportExceptionModifier and TypeMethodDescriptionRemotePortForwarder.bind(RemotePortForwarder.Forward forward, ConnectListener listener) Request forwarding from the remote host on the specifiedRemotePortForwarder.Forward.voidRemotePortForwarder.cancel(RemotePortForwarder.Forward forward) Request cancellation of some forwarding.voidAbstractForwardedChannel.confirm()voidForwardedChannelOpener.handleOpen(SSHPacket buf) Delegates aSSH_MSG_CHANNEL_OPENrequest for the channel type claimed by this opener.voidRemotePortForwarder.handleOpen(SSHPacket buf) Internal API.voidX11Forwarder.handleOpen(SSHPacket buf) Internal APIvoidAbstractForwardedChannel.reject(OpenFailException.Reason reason, String message) protected SSHPacketRemotePortForwarder.req(String reqName, RemotePortForwarder.Forward forward) -
Uses of TransportException in net.schmizz.sshj.transport
Fields in net.schmizz.sshj.transport with type parameters of type TransportExceptionModifier and TypeFieldDescriptionstatic final ExceptionChainer<TransportException> TransportException.chainerMethods in net.schmizz.sshj.transport that throw TransportExceptionModifier and TypeMethodDescriptionvoidTransport.doKex()Do key exchange and algorithm negotiation.voidTransportImpl.doKex()Transport.getClientKeyAlgorithms(KeyType keyType) TransportImpl.getClientKeyAlgorithms(KeyType keyType) voidTransport.init(String host, int port, InputStream in, OutputStream out) Sets the host information and the streams to be used by this transport.voidTransportImpl.init(String remoteHost, int remotePort, InputStream in, OutputStream out) voidTransport.join()Joins the thread calling this method to the transport's death.voidJoins the thread calling this method to the transport's death.voidTransportImpl.join()voidvoidTransport.reqService(Service service) Request a SSH service represented by aServiceinstance.voidTransportImpl.reqService(Service service) longTransport.sendUnimplemented()Sends SSH_MSG_UNIMPLEMENTED in response to the last packet received.longTransportImpl.sendUnimplemented()longWrite a packet over this transport.long -
Uses of TransportException in net.schmizz.sshj.transport.compression
Methods in net.schmizz.sshj.transport.compression that throw TransportExceptionModifier and TypeMethodDescriptionvoidCompression.uncompress(Buffer from, Buffer to) Uncompress the data in a buffer into another buffer.voidZlibCompression.uncompress(Buffer from, Buffer to) -
Uses of TransportException in net.schmizz.sshj.transport.kex
Methods in net.schmizz.sshj.transport.kex that throw TransportExceptionModifier and TypeMethodDescriptionvoidvoidvoidInitialize the key exchange algorithm.voidbooleanbooleanbooleanProcess the next packet -
Uses of TransportException in net.schmizz.sshj.userauth
Methods in net.schmizz.sshj.userauth that throw TransportExceptionModifier and TypeMethodDescriptionbooleanUserAuth.authenticate(String username, Service nextService, AuthMethod methods, int timeoutMs) Attempt to authenticateusernameusing each ofmethodsin order.booleanUserAuthImpl.authenticate(String username, Service nextService, AuthMethod method, int timeoutMs) -
Uses of TransportException in net.schmizz.sshj.userauth.method
Methods in net.schmizz.sshj.userauth.method that throw TransportException