You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in ch\ethz\ssh2\Connection.java:
tm.setSoTimeout(connectTimeout);
connectTimeout should affect socket connecting operation only, normally it is a short period of time, for instance, 3 secs. setSoTimeout() is expected to set a timeout for later socket read operation. How long the time period depends on the business requirements. So, it is better to introduce an additional parameter 'socketTimeOut'.
Thanks,
The text was updated successfully, but these errors were encountered:
in ch\ethz\ssh2\Connection.java:
tm.setSoTimeout(connectTimeout);
connectTimeout should affect socket connecting operation only, normally it is a short period of time, for instance, 3 secs. setSoTimeout() is expected to set a timeout for later socket read operation. How long the time period depends on the business requirements. So, it is better to introduce an additional parameter 'socketTimeOut'.
Thanks,
The text was updated successfully, but these errors were encountered: