curl-library
Re: Threaded resolver provides bad file descriptor on Windows
Date: Thu, 08 Jul 2010 10:29:34 -0400
On Tue, 2010-07-06 at 14:48 -0700, Constantine Sapuntzakis wrote:
> On Tue, Jul 6, 2010 at 1:16 PM, Brian Makin <makin_at_vivisimo.com> wrote:
> > Thank you for the quick feedback. We've added the call to
> > curl_multi_timeout, which seems to work *most* of the time.
>
> What's the behavior of the program when it doesn't work?
>
> > Unfortunately, when we did a very quick test [1], 8 out of 100 times the
> > returned timeout from curl_multi_timeout was -1. According to the man
>
> I need more info to understand what's happening here. Here is what I understand
> Your ran a program 100x from the command line. I'm guessing that
> program called curl_multi_timeout multiple times within some sort of
> loop which included curl_multi_perform and and curl_multi_fdset. On 8
> invocations of the program, in one of the iterations of the loop,
> curl_multi_timeout returned -1. This caused the program not to work on
> that invocation.
>
> > curl_multi_fdset(curlm, ...);
> > curl_multi_timeout(curlm, &suggested_timeout);
> >
> > timeout = external_timeout;
> >
>
> Move this code closer to the select:
>
> > if (timeout > 1000) {
> > timeout = 1000;
> > }
> > if (suggested_timeout >= 0 &&
> > timeout > suggested_timeout)
> > {
> > timeout = suggested_timeout;
> > }
> >
> > select(..., timeout);
>
> Are you converting timeout to a timeval correctly?
>
> Other things that can come in handy when debugging are wireshark (you
> can see where curl is pausing) and registering curl callbacks related
> to logging - which can give you verbose information about where curl
> is in its state machine at the time of the log message. See
> CURLOPT_VERBOSE and CURLOPT_DEBUGFUNCTION, which you set on the easy
> handle you add to the multi handle.
>
> -Costa
> -------------------------------------------------------------------
> List admin: http://cool.haxx.se/list/listinfo/curl-library
> Etiquette: http://curl.haxx.se/mail/etiquette.html
Sorry to have not provided enough information on the earlier email, we
didn't want to deluge the list with potentially unneeded detail.
To further reduce the problem, we have taken the multi-single example
and modified it the way you suggested. Please find attached a patch to
that effect (note that our test url is still in there, so you would
want to change it to something suitable).
We then run the modified executable 100 times from the shell[1]. The
output of these runs are attached. In it, you can see[2] that the
command takes longer than one second 28 out of the 100 times.
In these slower cases, the suggested timeout starts as 1 ms, but then
changes to -1 ms. According to the manpage, the -1 indicates that curl
has no good suggestable timeout. The modified example code falls back
to 1000 ms in this case.
When the execution is fast, the timeout starts at 1ms, then is 1 ms a
second time.
[1] (for i in `seq 100`; do echo "==$i"; time ./multi-single.exe; done)
>curl-log 2>&1
[2] fgrep real curl-log | fgrep -c 'm1.'
-- BRIAN MAKIN Senior Software Engineer makin_at_vivisimo.com Vivisimo [Search Done Rightâ„¢] 1710 Murray Avenue Pittsburgh, PA 15217 USA tel: +1.412.422.2499 vivisimo.com==1
It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 299985 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 299985 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:28 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.164s user 0m0.000s sys 0m0.015s ==2It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 300000 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:28 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.152s user 0m0.000s sys 0m0.015s ==3It works!
suggested timeout is 1 suggested timeout is -1 * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 298984 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 298984 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:29 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m1.152s user 0m0.015s sys 0m0.015s ==4It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 300000 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:30 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.153s user 0m0.000s sys 0m0.016s ==5It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 300000 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:30 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.148s user 0m0.000s sys 0m0.000s ==6It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 299984 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:30 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.149s user 0m0.000s sys 0m0.031s ==7It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 300000 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:30 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.152s user 0m0.000s sys 0m0.000s ==8It works!
suggested timeout is 1 suggested timeout is -1 * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 298984 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 298984 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:31 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m1.147s user 0m0.015s sys 0m0.000s ==9It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 299984 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 299984 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:31 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.124s user 0m0.000s sys 0m0.015s ==10It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 299984 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:31 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.160s user 0m0.000s sys 0m0.000s ==11It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 300000 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:32 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.151s user 0m0.000s sys 0m0.015s ==12It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 300000 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:32 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.149s user 0m0.000s sys 0m0.000s ==13It works!
suggested timeout is -1 * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 298985 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 298985 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:33 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m1.158s user 0m0.015s sys 0m0.000s ==14It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 300000 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:33 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.125s user 0m0.015s sys 0m0.000s ==15It works!
suggested timeout is 1 suggested timeout is -1 * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 298985 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 298985 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:34 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m1.149s user 0m0.000s sys 0m0.000s ==16It works!
suggested timeout is 1 suggested timeout is -1 * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 298985 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 298985 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:35 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m1.124s user 0m0.000s sys 0m0.016s ==17It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 299985 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 299985 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:35 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.125s user 0m0.000s sys 0m0.000s ==18It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 300000 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:36 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.150s user 0m0.000s sys 0m0.000s ==19It works!
suggested timeout is 1 suggested timeout is -1 * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 298985 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 298985 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:37 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m1.148s user 0m0.015s sys 0m0.000s ==20It works!
suggested timeout is 1 suggested timeout is -1 * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 298985 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 298985 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:38 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m1.125s user 0m0.000s sys 0m0.016s ==21It works!
suggested timeout is 1 suggested timeout is -1 * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 298985 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 298985 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:39 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m1.124s user 0m0.000s sys 0m0.015s ==22It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 299985 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:39 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.124s user 0m0.000s sys 0m0.015s ==23It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 299984 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:39 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.157s user 0m0.000s sys 0m0.000s ==24It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 300000 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:39 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.149s user 0m0.000s sys 0m0.016s ==25It works!
suggested timeout is 1 suggested timeout is -1 * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 298985 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 298985 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:41 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m1.148s user 0m0.000s sys 0m0.015s ==26It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 299985 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 299985 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:41 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.124s user 0m0.000s sys 0m0.016s ==27It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 300000 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:41 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.150s user 0m0.000s sys 0m0.000s ==28It works!
suggested timeout is -1 * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 298985 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 298985 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:42 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m1.147s user 0m0.000s sys 0m0.015s ==29It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 299985 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:42 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.124s user 0m0.000s sys 0m0.000s ==30It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 300000 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:42 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.147s user 0m0.000s sys 0m0.000s ==31It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 299985 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:42 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.150s user 0m0.015s sys 0m0.015s ==32It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 300000 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:43 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.148s user 0m0.000s sys 0m0.000s ==33It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 300000 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:43 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.148s user 0m0.015s sys 0m0.015s ==34It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 300000 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:43 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.148s user 0m0.000s sys 0m0.000s ==35It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 299984 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 299984 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:43 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.151s user 0m0.000s sys 0m0.031s ==36It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 300000 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:43 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.150s user 0m0.000s sys 0m0.015s ==37It works!
suggested timeout is 1 suggested timeout is -1 * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 298984 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 298984 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:44 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m1.146s user 0m0.000s sys 0m0.015s ==38It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 299984 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:44 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.124s user 0m0.000s sys 0m0.000s ==39It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 300000 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:45 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.150s user 0m0.000s sys 0m0.000s ==40It works!
suggested timeout is 1 suggested timeout is -1 * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 298984 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 298984 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:46 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m1.152s user 0m0.015s sys 0m0.000s ==41It works!
suggested timeout is 1 suggested timeout is -1 * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 298984 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 298984 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:47 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m1.123s user 0m0.000s sys 0m0.015s ==42It works!
suggested timeout is 1 suggested timeout is -1 * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 298984 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 298984 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:48 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m1.123s user 0m0.000s sys 0m0.016s ==43It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 299984 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:48 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.124s user 0m0.000s sys 0m0.000s ==44It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 300000 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:48 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.151s user 0m0.000s sys 0m0.000s ==45It works!
suggested timeout is 1 suggested timeout is -1 * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 298984 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 298984 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:49 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m1.148s user 0m0.015s sys 0m0.000s ==46It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 299984 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 299984 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:50 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.135s user 0m0.000s sys 0m0.015s ==47It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 300000 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:50 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.150s user 0m0.000s sys 0m0.016s ==48It works!
suggested timeout is 1 suggested timeout is -1 * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 298984 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 298984 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:51 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m1.152s user 0m0.000s sys 0m0.031s ==49It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 300000 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:51 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.153s user 0m0.000s sys 0m0.016s ==50It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 300000 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:51 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.151s user 0m0.000s sys 0m0.000s ==51It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 299985 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 299985 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:51 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.150s user 0m0.015s sys 0m0.000s ==52It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 300000 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:51 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.151s user 0m0.000s sys 0m0.031s ==53It works!
suggested timeout is 1 suggested timeout is -1 * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 298984 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 298984 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:53 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m1.146s user 0m0.000s sys 0m0.000s ==54It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 299985 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:53 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.163s user 0m0.000s sys 0m0.016s ==55It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 299984 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 299984 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:53 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.154s user 0m0.015s sys 0m0.000s ==56It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 299984 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:53 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.149s user 0m0.000s sys 0m0.031s ==57It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 299984 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:53 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.160s user 0m0.000s sys 0m0.000s ==58It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 300000 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:53 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.151s user 0m0.015s sys 0m0.000s ==59It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 300000 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:54 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.151s user 0m0.000s sys 0m0.000s ==60It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 299985 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 299985 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:54 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.150s user 0m0.000s sys 0m0.015s ==61It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 300000 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:54 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.149s user 0m0.000s sys 0m0.015s ==62It works!
suggested timeout is -1 * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 298984 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 298984 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:55 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m1.147s user 0m0.000s sys 0m0.015s ==63It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 300000 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:55 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.153s user 0m0.000s sys 0m0.000s ==64It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 300000 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:55 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.150s user 0m0.000s sys 0m0.000s ==65It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 299985 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 299985 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:55 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.160s user 0m0.015s sys 0m0.000s ==66It works!
suggested timeout is 1 suggested timeout is -1 * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 298985 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 298985 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:57 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m1.147s user 0m0.000s sys 0m0.015s ==67It works!
suggested timeout is 1 suggested timeout is -1 * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 298985 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 298985 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:58 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m1.124s user 0m0.000s sys 0m0.016s ==68It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 299985 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 299985 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:58 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.126s user 0m0.000s sys 0m0.000s ==69It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 299984 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:58 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.160s user 0m0.000s sys 0m0.015s ==70It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 299984 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:58 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.159s user 0m0.000s sys 0m0.031s ==71It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 299985 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 299985 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:58 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.150s user 0m0.000s sys 0m0.015s ==72It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 300000 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:58 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.150s user 0m0.000s sys 0m0.016s ==73It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 300000 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:59 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.150s user 0m0.015s sys 0m0.000s ==74It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 299985 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:59 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.151s user 0m0.000s sys 0m0.031s ==75It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 300000 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:53:59 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.149s user 0m0.000s sys 0m0.000s ==76It works!
suggested timeout is 1 suggested timeout is -1 * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 298985 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 298985 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:54:00 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m1.149s user 0m0.015s sys 0m0.000s ==77It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 300000 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:54:00 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.152s user 0m0.000s sys 0m0.016s ==78It works!
suggested timeout is 0 suggested timeout is -1 * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 298984 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 298984 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:54:01 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m1.145s user 0m0.000s sys 0m0.000s ==79It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 300000 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:54:01 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.154s user 0m0.000s sys 0m0.015s ==80It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 300000 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:54:02 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.149s user 0m0.000s sys 0m0.000s ==81It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 299985 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 299985 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:54:02 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.150s user 0m0.015s sys 0m0.015s ==82It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 300000 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:54:02 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.150s user 0m0.000s sys 0m0.000s ==83It works!
suggested timeout is 0 suggested timeout is -1 * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 298984 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 298984 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:54:03 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m1.147s user 0m0.000s sys 0m0.015s ==84It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 300000 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:54:03 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.153s user 0m0.000s sys 0m0.016s ==85It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 300000 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:54:03 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.150s user 0m0.000s sys 0m0.000s ==86It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 299985 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 299985 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:54:04 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.150s user 0m0.031s sys 0m0.000s ==87It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 300000 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:54:04 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.149s user 0m0.000s sys 0m0.000s ==88It works!
suggested timeout is 1 suggested timeout is -1 * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 298984 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 298984 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:54:05 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m1.149s user 0m0.000s sys 0m0.015s ==89It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 299985 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:54:05 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.162s user 0m0.000s sys 0m0.016s ==90It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 299984 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 299984 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:54:05 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.150s user 0m0.000s sys 0m0.015s ==91It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 300000 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:54:05 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.150s user 0m0.000s sys 0m0.015s ==92It works!
suggested timeout is -1 * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 298985 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 298985 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:54:06 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m1.146s user 0m0.016s sys 0m0.000s ==93It works!
suggested timeout is 1 suggested timeout is -1 * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 298985 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 298985 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:54:08 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m1.125s user 0m0.000s sys 0m0.016s ==94It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 299985 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 299985 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:54:08 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.137s user 0m0.000s sys 0m0.000s ==95It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 300000 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:54:08 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.148s user 0m0.000s sys 0m0.000s ==96It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 299984 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 299984 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:54:08 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.151s user 0m0.000s sys 0m0.015s ==97It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 300000 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 300000 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:54:08 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.151s user 0m0.015s sys 0m0.000s ==98It works!
suggested timeout is 1 suggested timeout is -1 * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 298984 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 298984 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:54:09 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m1.147s user 0m0.015s sys 0m0.000s ==99It works!
suggested timeout is 1 suggested timeout is -1 * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 298984 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 298984 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:54:10 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m1.124s user 0m0.000s sys 0m0.015s ==100It works!
suggested timeout is 1 suggested timeout is 1 * Expire cleared * About to connect() to jpg-melchior.vivisimo.com port 80 (#0) * Trying 192.168.0.20... suggested timeout is 299984 > GET / HTTP/1.1 Host: jpg-melchior.vivisimo.com Accept: */* suggested timeout is 299984 < HTTP/1.1 200 OK < Date: Thu, 08 Jul 2010 13:54:11 GMT < Server: Apache < Last-Modified: Fri, 28 Sep 2007 15:26:03 GMT < ETag: "143c016-2c-43b33b46918c0" < Accept-Ranges: bytes < Content-Length: 44 < Content-Type: text/html < * Expire cleared * Connection #0 to host jpg-melchior.vivisimo.com left intact real 0m0.126s user 0m0.016s sys 0m0.000s
-------------------------------------------------------------------
List admin: http://cool.haxx.se/list/listinfo/curl-library
Etiquette: http://curl.haxx.se/mail/etiquette.html
- text/x-patch attachment: multi-single.patch