cURL / Mailing Lists / curl-library / Single Mail

curl-library

Re: Threaded resolver provides bad file descriptor on Windows

From: Brian Makin <makin_at_vivisimo.com>
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 ==2

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 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 ==3

It 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 ==4

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 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 ==5

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 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 ==6

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 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 ==7

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 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 ==8

It 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 ==9

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 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 ==10

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 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 ==11

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 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 ==12

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 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 ==13

It 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 ==14

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 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 ==15

It 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 ==16

It 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 ==17

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: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 ==18

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 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 ==19

It 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 ==20

It 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 ==21

It 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 ==22

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 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 ==23

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 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 ==24

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 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 ==25

It 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 ==26

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: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 ==27

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 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 ==28

It 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 ==29

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 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 ==30

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 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 ==31

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 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 ==32

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 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 ==33

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 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 ==34

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 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 ==35

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 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 ==36

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 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 ==37

It 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 ==38

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 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 ==39

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 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 ==40

It 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 ==41

It 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 ==42

It 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 ==43

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 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 ==44

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 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 ==45

It 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 ==46

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 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 ==47

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 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 ==48

It 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 ==49

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 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 ==50

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 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 ==51

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: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 ==52

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 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 ==53

It 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 ==54

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 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 ==55

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 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 ==56

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 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 ==57

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 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 ==58

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 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 ==59

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 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 ==60

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: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 ==61

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 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 ==62

It 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 ==63

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 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 ==64

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 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 ==65

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: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 ==66

It 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 ==67

It 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 ==68

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: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 ==69

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 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 ==70

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 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 ==71

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: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 ==72

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 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 ==73

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 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 ==74

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 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 ==75

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 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 ==76

It 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 ==77

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 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 ==78

It 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 ==79

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 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 ==80

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 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 ==81

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: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 ==82

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 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 ==83

It 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 ==84

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 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 ==85

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 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 ==86

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: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 ==87

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 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 ==88

It 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 ==89

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 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 ==90

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 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 ==91

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 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 ==92

It 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 ==93

It 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 ==94

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: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 ==95

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 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 ==96

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 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 ==97

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 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 ==98

It 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 ==99

It 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 ==100

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 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

Received on 2010-07-08