Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: About Timeout

From: holger:rebol at: 22-May-2001 11:21

On Tue, May 22, 2001 at 08:12:32AM -0300, Rondon Andrade wrote:
> Hi Everybody! > > Well, I'm trying to access with HTTP some sites, but sometimes when they > have a lot of traffic, I get a network error "timeout".. I've already set > system/schemes/http/timeout: 0:30:0, but it still give an error with > timeout. I know, I can treat the error with "try ...", but what about the > timeout? I know that the link of the site I'm accessing is too slow, but If > I can get the information waiting in my IE, why using rebol, it can't hold > until get response ...
IE/NS have the same problem, but you don't see it because they simply try to connect again if the first connection attempt fails. You can do the same thing with REBOL. There is not much else you can do. Usually this is caused by incorrectly implemented workarounds for the SYN flood problem at the server, e.g. the SYN cookie scheme in some Linux versions. Under heavy load and in congested networks this can cause TCP protocol violations in the 3-way TCP handshake and can lead to timeouts at the client. -- Holger Kruse [holger--rebol--com]