| Method and Description |
|---|
| net.schmizz.sshj.SocketClient.connect(InetAddress, int, Proxy)
This method will be removed after v0.12.0. If you want to connect via a proxy, you can do this by injecting a
SocketFactory
into the SocketClient. The SocketFactory should create sockets using the Socket.Socket(java.net.Proxy) constructor. |
| net.schmizz.sshj.SocketClient.connect(InetAddress, Proxy)
This method will be removed after v0.12.0. If you want to connect via a proxy, you can do this by injecting a
SocketFactory
into the SocketClient. The SocketFactory should create sockets using the Socket.Socket(java.net.Proxy) constructor. |
| net.schmizz.sshj.SocketClient.connect(String, int, Proxy)
This method will be removed after v0.12.0. If you want to connect via a proxy, you can do this by injecting a
SocketFactory
into the SocketClient. The SocketFactory should create sockets using the Socket.Socket(java.net.Proxy) constructor. |
| net.schmizz.sshj.SocketClient.connect(String, Proxy)
This method will be removed after v0.12.0. If you want to connect via a proxy, you can do this by injecting a
SocketFactory
into the SocketClient. The SocketFactory should create sockets using the Socket.Socket(java.net.Proxy) constructor. |
| net.schmizz.sshj.transport.TransportImpl.getHeartbeatInterval() |
| net.schmizz.sshj.transport.Transport.getHeartbeatInterval()
Moved to
KeepAlive.getKeepAliveInterval(). This is accessible through the Connection.
Scheduled to be removed in 0.12.0 |
| net.schmizz.sshj.transport.TransportImpl.setHeartbeatInterval(int) |
| net.schmizz.sshj.transport.Transport.setHeartbeatInterval(int)
Moved to
KeepAlive.getKeepAliveInterval(). This is accessible through the Connection.
Scheduled to be removed in 0.12.0 |
| Constructor and Description |
|---|
| net.schmizz.sshj.transport.TransportImpl(Config, SSHClient) |