检测jsch断线
如何从客户端检测到 jsch 会话已被服务器断开?
How can I detect from the client that jsch session has been disconnected by the server?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何从客户端检测到 jsch 会话已被服务器断开?
How can I detect from the client that jsch session has been disconnected by the server?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
您的意思是会话对象上的 isConnected() 函数除外?
You mean other than the isConnected() function on the session object?
如果您使用 setPortForwardingL() 设置端口转发,您可以使用这样的函数来验证隧道(和连接)是否仍然存在。 (该示例通过隧道传输 Echo 服务)。
If you setup a portforwarding with setPortForwardingL() you can use a function like this to verfiy if the tunnel (and the connection) is still alive. (The example tunnels the Echo Service).
为我工作,但必须确保您
先打电话
works for me but must be sure you call
before