Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-02-26 | Removed inclusion of <sys/types.h> in .c-files | Gisle Vanem | |
since it's already included through "setup.h". | |||
2007-02-26 | Removed inclusion of <sys/types.h> and <sys/stat.h> in .c-files | Gisle Vanem | |
since they're already included through "setup.h". | |||
2007-02-26 | Removed unneeded 'HAVE_x' defines. | Gisle Vanem | |
2007-02-26 | Fix typo. | Gisle Vanem | |
2007-02-25 | Constify some arguments. | Gisle Vanem | |
2007-02-25 | Use dynamic version of libcurl. Use '\' in dependencies. | Gisle Vanem | |
2007-02-25 | Two new mirrors, but the total amount of mirrors still don't go up very much | Daniel Stenberg | |
due to the frequent dying of mirrors... | |||
2007-02-25 | - Adam D. Moss made the HTTP CONNECT procedure less blocking when used from | Daniel Stenberg | |
the multi interface. Note that it still does a part of the connection in a blocking manner. | |||
2007-02-23 | Works for me | Daniel Stenberg | |
2007-02-23 | - Added warning outputs if the command line uses more than one of the options | Daniel Stenberg | |
-v, --trace and --trace-ascii, since it could really confuse the user. Clarified this fact in the man page. | |||
2007-02-22 | setting CURLOPT_PROXY to "" explicitly disables the use of a proxy (even if | Daniel Stenberg | |
there is an environment variable set) | |||
2007-02-22 | 5 seconds isn't always enough time to start a server on a loaded system. | Dan Fandrich | |
2007-02-22 | remove redundant check in timestamp detection | Yang Tse | |
2007-02-22 | include <sys/types.h> when checking availability of the bool type | Yang Tse | |
2007-02-22 | compiler warning fix | Yang Tse | |
2007-02-22 | Fix compiler warning "statement is unreachable" | Yang Tse | |
2007-02-22 | Fix compiler warnings | Yang Tse | |
"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. | |||
2007-02-22 | Check for stdbool.h at configuration stage, and include it if available. | Yang Tse | |
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 | |||
2007-02-21 | silence two cases of "comparison between signed and unsigned" | Daniel Stenberg | |
2007-02-21 | - Ravi Pratap provided work on libcurl making pipelining more robust and | Daniel Stenberg | |
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 | |||
2007-02-21 | curlassert macro replaced with DEBUGASSERT macro defined in setup_once.h | Yang Tse | |
2007-02-21 | Include some possible dependencies of arpa/inet.h | Dan Fandrich | |
2007-02-21 | Cleanup WIN32 target using WSACleanup(). | Gisle Vanem | |
2007-02-21 | fix compiler warning "enumerated type mixed with another type" | Yang Tse | |
2007-02-20 | New FTP CCC functionality - adds passive and active mode to accomodate for ↵ | Linus Nielsen Feltzing | |
different server behaviour | |||
2007-02-20 | New FTP CCC functionality - adds passive and active mode to accomodate for ↵ | Linus Nielsen Feltzing | |
different server behaviour | |||
2007-02-20 | Include network byte order conversion macros on Minix. | Dan Fandrich | |
2007-02-20 | compiler warning fix | Yang Tse | |
2007-02-20 | compiler warning fix | Yang Tse | |
2007-02-20 | curl tool was using functions curlx_tvnow and curlx_tvdiff which are not | Yang Tse | |
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. | |||
2007-02-20 | Move header file inclusion logic and definition of timeval | Yang Tse | |
struct for platforms that don't have it to setup_once.h | |||
2007-02-20 | Several corrections & changes to what has been stated in revision 1.45 | Yang Tse | |
1) The maketgz script does not insert the timestamp in curlver.h, it actually updates it. For CVS versions it is the "CVS" string. 2) testcurl.pl will always print the "date" string which represents the moment the test build is run. 3) testcurl.pl may not print the "timestamp" string since the script may end before it is printed out. (i.e. unable to update from CVS) 4) The "timestamp" string printed will be the same as the "date" one unless one of the following conditions is met. *) It is a tarball-based build. Timestamp will be creation time. *) CVS update has been done. Timestamp will be end of CVS update. | |||
2007-02-20 | add tutil_tvdiff_secs() for completeness | Yang Tse | |
2007-02-19 | Mention curl-config dependencies fix. | Dan Fandrich | |
2007-02-19 | fix typo | Yang Tse | |
2007-02-19 | Show libcurl's timestamp. This timestamp is only available in curlver.h | Yang Tse | |
for tarball-based tests and builds, the maketgz script inserts it when the tarball is created. For CVS-based tests and builds the timestamp we show is the current UTC build time as it is the CVS version timestamp. In this way, all builds will have a valid source code timestamp which isn't related to the moment the tests and build is performed, with the exception of CVS-based ones which have the same "date" and "timestamp" | |||
2007-02-19 | Added ares_parse_ns_reply.obj etc. | Gisle Vanem | |
2007-02-19 | INADDR_NONE no longer used. | Gisle Vanem | |
2007-02-19 | Fixed typo. | Gisle Vanem | |
2007-02-19 | Vlad Dinulescu added ares_parse_ns_reply() | Daniel Stenberg | |
2007-02-19 | Ian Turner fixed the libcurl.m4 macro's support for --with-libcurl. | Daniel Stenberg | |
AC_PATH_PROG was not used properly. | |||
2007-02-19 | - Shmulik Regev found a memory leak in re-used HTTPS connections, at least | Daniel Stenberg | |
when the multi interface was used. | |||
2007-02-19 | and fix warnings due to lack of protos | Daniel Stenberg | |
2007-02-19 | - Robson Braga Araujo made passive FTP transfers work with SOCKS (both 4 and | Daniel Stenberg | |
5). | |||
2007-02-19 | fixed code to compile and removed one warning | Daniel Stenberg | |
2007-02-19 | log a message, stating the need of openssl to run this test | Yang Tse | |
2007-02-19 | Oops missing var | Yang Tse | |
2007-02-19 | compiler warning fix | Yang Tse | |
2007-02-19 | add debug messages for initialization failures | Yang Tse | |
2007-02-18 | - Jeff Pohlmeyer identified two problems: first a rather obscure problem with | Daniel Stenberg | |
the multi interface and connection re-use that could make a curl_multi_remove_handle() ruin a pointer in another handle. The second problem was less of an actual problem but more of minor quirk: the re-using of connections wasn't properly checking if the connection was marked for closure. |