1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-03 07:05:24 +02:00

Use 60 seconds connect timeout

This commit is contained in:
Martin Oberhuber 2007-05-16 15:52:44 +00:00
parent 7e0136d6e5
commit 116c5773b9

View file

@ -59,7 +59,7 @@ public class TelnetConnectorService extends StandardConnectorService implements
public static final String PROPERTY_COMMAND_PROMPT = "Command.Prompt"; //$NON-NLS-1$
private static final int TELNET_DEFAULT_PORT = 23; // TODO Make configurable
private static final int TELNET_CONNECT_TIMEOUT = 10; //seconds - TODO: Make configurable
private static final int TELNET_CONNECT_TIMEOUT = 60; //seconds - TODO: Make configurable
private TelnetClient fTelnetClient = new TelnetClient();
private SessionLostHandler fSessionLostHandler;
private InputStream in;