Skip to content

betanzos/jsch

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Maven javadoc License: Apache 2.0

JSch for JDK 9

Is an improved implementation of JSch (http://www.jcraft.com/jsch/, a pure Java implementation of SSH2) with support for the Java Platform Module System.

Additional features and improvements

ChannelWritableShell

An version of ChannelShell than not use an InputStream for send data to server. Instead that, method send(byte[]) must be used.

Session#sendKeepAliveMsg()

It's behavior was changed for allowing to execute an Runnable instead send the original keepalive message. This Runnable can be defined with Session#setCustomSendKeepAliveMsg(Runnable) method. If Runnable isn't defined, original keepalive message will be sending.