Re: [tclwebtest] Non blocking http requests
Status: Abandoned
Brought to you by:
tils
From: Tilmann S. <ti...@ti...> - 2003-03-05 19:06:08
|
Hmm, this sounds like very much being the symptom of geturl not being _threadsafe_ - I never understood what that actually means, but this problem gives me some idea on it. You could make it sure by not testing against a slow and a fast server, but against your a socket that you opened on your own and thus know that it will never been answered until you hit Ctrl-D: $ socket -s 9000 ... do_request "http://localhost:9000" til |