From: beware Date: Mon, 22 Mar 2010 16:18:15 +0000 (+0000) Subject: increased connect timeout in case of more IPs to try to 5 seconds X-Git-Url: http://www.lcore.org/git/lcore.git/commitdiff_plain/6e5673aa1dcdb1ba7688b75f7f065353abc86159?hp=3124451e3e3e632e45928b7d28e3b2bff06e1879 increased connect timeout in case of more IPs to try to 5 seconds git-svn-id: file:///svnroot/lcore/trunk@87 b1de8a11-f9be-4011-bde0-cc7ace90066a --- diff --git a/lsocket.pas b/lsocket.pas index 7f9617e..bcff643 100755 --- a/lsocket.pas +++ b/lsocket.pas @@ -299,7 +299,7 @@ begin if not assigned(connecttimeout) then begin connecttimeout := tltimer.create(self); connecttimeout.ontimer := connecttimeouthandler; - connecttimeout.interval := 2500; + connecttimeout.interval := 5000; connecttimeout.enabled := false; end; realconnect;