8b26c93a | 25-Feb-2007 |
Daniel Stenberg |
Two new mirrors, but the total amount of mirrors still don't go up very much due to the frequent dying of mirrors... |
b819c727 | 25-Feb-2007 |
Daniel Stenberg |
- Adam D. Moss made the HTTP CONNECT procedure less blocking when used from the multi interface. Note that it still does a part of the connection in a blocking manner. |
d2cfb7fd | 23-Feb-2007 |
Daniel Stenberg |
Works for me |
e3797391 | 23-Feb-2007 |
Daniel Stenberg |
- Added warning outputs if the command line uses more than one of the options -v, --trace and --trace-ascii, since it could really confuse the user. Clarified this fact in the man page. |
8b5295d0 | 22-Feb-2007 |
Daniel Stenberg |
setting CURLOPT_PROXY to "" explicitly disables the use of a proxy (even if there is an environment variable set) |
fe0afb21 | 22-Feb-2007 |
Dan Fandrich |
5 seconds isn't always enough time to start a server on a loaded system. |
141b3d0c | 22-Feb-2007 |
Yang Tse |
remove redundant check in timestamp detection |
2a6a22a3 | 22-Feb-2007 |
Yang Tse |
include <sys/types.h> when checking availability of the bool type |
4937281d | 22-Feb-2007 |
Yang Tse |
compiler warning fix |
8e27ed2f | 22-Feb-2007 |
Yang Tse |
Fix compiler warning "statement is unreachable" |
9bf9617a | 22-Feb-2007 |
Yang Tse |
Fix compiler warnings "case label value exceeds maximum value for type" and "comparison is always false due to limited range of data type" Both triggered when using a bool varia
Fix compiler warnings "case label value exceeds maximum value for type" and "comparison is always false due to limited range of data type" Both triggered when using a bool variable as the switch variable in a switch statement and using enums for the case targets.
show more ...
|
69565afa | 22-Feb-2007 |
Yang Tse |
Check for stdbool.h at configuration stage, and include it if available. Check for lowercase 'bool' type at configuration stage. If not available provide a suitable replacement with a ty
Check for stdbool.h at configuration stage, and include it if available. Check for lowercase 'bool' type at configuration stage. If not available provide a suitable replacement with a type definition of 'unsigned char' in setup_once.h Move definitions of TRUE and FALSE to setup_once.h
show more ...
|
39aac635 | 21-Feb-2007 |
Daniel Stenberg |
silence two cases of "comparison between signed and unsigned" |
f19d333e | 21-Feb-2007 |
Daniel Stenberg |
- Ravi Pratap provided work on libcurl making pipelining more robust and fixing some bugs: o Don't mix GET and POST requests in a pipeline o Fix the order in which requests are disp
- Ravi Pratap provided work on libcurl making pipelining more robust and fixing some bugs: o Don't mix GET and POST requests in a pipeline o Fix the order in which requests are dispatched from the pipeline o Fixed several curl bugs with pipelining when the server is returning chunked encoding: * Added states to chunked parsing for final CRLF * Rewind buffer after parsing chunk with data remaining * Moved chunked header initializing to a spot just before receiving headers
show more ...
|
3a634a27 | 21-Feb-2007 |
Yang Tse |
curlassert macro replaced with DEBUGASSERT macro defined in setup_once.h |
06d1b029 | 21-Feb-2007 |
Dan Fandrich |
Include some possible dependencies of arpa/inet.h |
45bf4173 | 21-Feb-2007 |
Gisle Vanem |
Cleanup WIN32 target using WSACleanup(). |
48029d7e | 21-Feb-2007 |
Yang Tse |
fix compiler warning "enumerated type mixed with another type" |
83e07825 | 20-Feb-2007 |
Linus Nielsen Feltzing |
New FTP CCC functionality - adds passive and active mode to accomodate for different server behaviour |
2f5e99ca | 20-Feb-2007 |
Linus Nielsen Feltzing |
New FTP CCC functionality - adds passive and active mode to accomodate for different server behaviour |
6014c21b | 20-Feb-2007 |
Dan Fandrich |
Include network byte order conversion macros on Minix. |
8c0b1dc3 | 20-Feb-2007 |
Yang Tse |
compiler warning fix |
be3c5f0b | 20-Feb-2007 |
Yang Tse |
compiler warning fix |
e268e855 | 20-Feb-2007 |
Yang Tse |
curl tool was using functions curlx_tvnow and curlx_tvdiff which are not part of the official libcurl API http://curl.haxx.se/lxr/source/lib/README.curlx The documented way of using them woul
curl tool was using functions curlx_tvnow and curlx_tvdiff which are not part of the official libcurl API http://curl.haxx.se/lxr/source/lib/README.curlx The documented way of using them would be to use timeval.c as a source code file. The above described method works very well when statically linking libcurl and apps, curl tool, but has several drawbacks when you build a true shared libcurl (i.e. Name space clash at linkage stage as functions are defined more than once. Windows makefiles are not capable of handling this system of source-level sharing) So... Now curlutil.h and curlutil.c define and implement cutil_tvnow and cutil_tvdiff which replace curlx_tvnow and curlx_tvdiff for the curl tool. Doing this we avoid the above described problems.
show more ...
|
29bb6f65 | 20-Feb-2007 |
Yang Tse |
Move header file inclusion logic and definition of timeval struct for platforms that don't have it to setup_once.h |