c64fca1b | 27-Apr-2002 |
Daniel Stenberg |
Fixed the FTP response reader to deal with timeouts better. Previously it would reset the timeout for each incoming data, which would make veeery slow responses be allowed to take even more t
Fixed the FTP response reader to deal with timeouts better. Previously it would reset the timeout for each incoming data, which would make veeery slow responses be allowed to take even more time since the timeout would only be reached if the time between two received data chunks was longer than the set timeout value...
show more ...
|
15b2a3af | 27-Apr-2002 |
Daniel Stenberg |
(Curl_GetFTPResponse) moved some code to only get performed when actually needed |
8358505b | 27-Apr-2002 |
Daniel Stenberg |
Now uses Curl_ as prefix for internal global symbols. curl_ should only be used for "exported" globals. |
1c427798 | 27-Apr-2002 |
Daniel Stenberg |
DNC cache prune crash removed, made the name spacing follow the general rule: "Curl_" prefix for library-wide private symbols, "curl_" is for exported symbols. |
32823f17 | 26-Apr-2002 |
Daniel Stenberg |
openbsd on Alpha was no problemos |
e1c2e3f5 | 26-Apr-2002 |
Daniel Stenberg |
test suite portability fix |
044755b3 | 26-Apr-2002 |
Daniel Stenberg |
handles much larger POSTs, replaced snprintf() with sprintf() since this needs to be more portable and in the test server we can skip the extra safety |
9aa22399 | 26-Apr-2002 |
Daniel Stenberg |
another week of changes |
f564905a | 25-Apr-2002 |
Daniel Stenberg |
adjusted to the new Curl_resolv() proto |
00e4f814 | 25-Apr-2002 |
Daniel Stenberg |
prevent persistant connections to do name resolves |
8927ddec | 25-Apr-2002 |
Daniel Stenberg |
In order to not get problems with DNS cache pruning, we no longer store any name resolved data in any curl handle struct. That way, we won't mind if the cache entries are pruned for the next
In order to not get problems with DNS cache pruning, we no longer store any name resolved data in any curl handle struct. That way, we won't mind if the cache entries are pruned for the next time we need them. We'll just resolve them again instead. This changes the Curl_resolv() proto. It modifies the SessionHandle struct but perhaps most importantly, it'll make the internals somewhat dependent on the DNS cache not being disabled as that will cripple operations somewhat. Especially for persistant connections.
show more ...
|
f6525ae2 | 25-Apr-2002 |
Daniel Stenberg |
the TOTAL_TIME is not really total, as it excludes the connect time... |
0be7944d | 25-Apr-2002 |
Daniel Stenberg |
use the hostname pointer instead of using IPv4-only info from a struct |
47819ea8 | 24-Apr-2002 |
Daniel Stenberg |
clarified a bit with the timecondition stuff |
96ce3461 | 24-Apr-2002 |
Daniel Stenberg |
no, this doesn't look like it bugs |
8b6d5554 | 24-Apr-2002 |
Daniel Stenberg |
NetBSD alpha works, also tried a newer FreeBSD on alpha |
3b9ef8df | 23-Apr-2002 |
Daniel Stenberg |
removed warning about signed/unsigned comparison |
db6d4bcf | 23-Apr-2002 |
Daniel Stenberg |
the 80 column police narrowed this source code! B-] |
471f1d69 | 23-Apr-2002 |
Daniel Stenberg |
fixes bug report #547484, no_proxy doesn't properly strip off port numbers from the host names before comparing |
495f6f6b | 23-Apr-2002 |
Daniel Stenberg |
use new timecond defines |
36e35b6f | 22-Apr-2002 |
Daniel Stenberg |
allow binding the local end of a connection even when using IPv6, thus we now have --interface working properly |
192606bc | 22-Apr-2002 |
Daniel Stenberg |
use double where it is supposed to |
53a9fdf0 | 22-Apr-2002 |
Daniel Stenberg |
use sclose() to close sockets |
ef436bdb | 22-Apr-2002 |
Daniel Stenberg |
renamed the TIMECOND defines to be CURL_ prefixed |
72d722b0 | 22-Apr-2002 |
Daniel Stenberg |
The timecond stuff now have CURL_ prefixes |