2182e374 | 07-Jan-2002 |
Daniel Stenberg |
the bool typedef is now made unsigned, to make sure it stays that on all platforms, unrelated to what they might prefer by default |
1de82b22 | 07-Jan-2002 |
Daniel Stenberg |
removed silly check for >=0 of a supposedly unsigned value! |
bd878756 | 07-Jan-2002 |
Sterling Hughes |
Probably not necessary, but good practice. |
8d7f402e | 07-Jan-2002 |
Sterling Hughes |
Make cach'ing work with threads now, there are now three cases: - Use a global dns cache (via setting the tentatively named, CURLOPT_DNS_USE_GLOBAL_CACHE option to true)
Make cach'ing work with threads now, there are now three cases: - Use a global dns cache (via setting the tentatively named, CURLOPT_DNS_USE_GLOBAL_CACHE option to true) - Use a per-handle dns cache, by default - Use a pooled dns cache when in the "multi" interface
show more ...
|
d3299bee | 07-Jan-2002 |
Daniel Stenberg |
Modified to use non-blocking sockets all the time. |
f9192db3 | 07-Jan-2002 |
Daniel Stenberg |
VC++ makefile, HTTP 204, cookie fix, non-blocking socket for better SSL connection timeout |
c69c0c04 | 07-Jan-2002 |
Daniel Stenberg |
added proper breaks in the switch() |
deb2911c | 07-Jan-2002 |
Daniel Stenberg |
Added David Bentham's notes about QNX and FD_SETSIZE |
e31a306a | 07-Jan-2002 |
Daniel Stenberg |
HTTP response 204 should be treated similar to 304, that is we must not expect (nor read) any response-body |
d9a77730 | 07-Jan-2002 |
Daniel Stenberg |
added precautions to not go insane when two matching cookies end up in the cookie list, even though they're not supposed to do that... |
2b149168 | 04-Jan-2002 |
sm |
Add hash and llist to VC dsp file |
1d1530e1 | 04-Jan-2002 |
sm |
Add hash and llist to VC makefile |
b4fdc025 | 04-Jan-2002 |
Daniel Stenberg |
-l lists all tests |
f1c14fe0 | 04-Jan-2002 |
Daniel Stenberg |
The former -c is "-C -" these days |
38306cda | 04-Jan-2002 |
Daniel Stenberg |
dns cache, ftp response read, 64bit fixes, printf replaces, inet_ntoa_r corrections |
5a0f0023 | 04-Jan-2002 |
Daniel Stenberg |
replaced printf() => Curl_sendf() |
6dcdb8b8 | 04-Jan-2002 |
Daniel Stenberg |
removed a commented line |
781f52a2 | 04-Jan-2002 |
Daniel Stenberg |
fixed an inet_ntoa() occurance to use inet_ntoa_r() if it is available. I also replaced all printf() calls with calls to Curl_failf() |
f75ff58b | 04-Jan-2002 |
Daniel Stenberg |
an unconditional occurance of inet_ntoa() now uses inet_ntoa_r() on all platforms that have such a function. This affects multi-thread running libcurls on IPv4 systems that have VERBOSE s
an unconditional occurance of inet_ntoa() now uses inet_ntoa_r() on all platforms that have such a function. This affects multi-thread running libcurls on IPv4 systems that have VERBOSE switched on. The previous version was risking that another thread overwrote the data before it was read out in this thread. There could possibly also be a slight risk that the data isn't zero terminated for a short while and thus could cause the thread to crash...
show more ...
|
ae9bf16d | 04-Jan-2002 |
Daniel Stenberg |
#include the local "inet_ntoa_r.h" file if no proto was found in the global header directory but the function *is* present! |
17a8bf21 | 04-Jan-2002 |
Daniel Stenberg |
The buffer in ftp_pasv_verbose(), used for gethostbyaddr_r(), is now defined to become properly 8-byte aligned on 64-bit archs. Philip Gladstone reported. |
4fc76afe | 04-Jan-2002 |
Daniel Stenberg |
The FTP response lines are now passed to the function callback registered for headers. |
a31155a7 | 03-Jan-2002 |
Daniel Stenberg |
multi stuff from the multi-dev branch |
75601f79 | 03-Jan-2002 |
Daniel Stenberg |
multi interface example/test sources from the multi-dev branch |
8b6314cc | 03-Jan-2002 |
Daniel Stenberg |
merged the multi-dev branch back into MAIN again |