Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-05-26 | Reduced #ifdef HAVE_METALINK | Tatsuhiro Tsujikawa | |
2012-04-06 | curl tool: use configuration files from lib directory | Yang Tse | |
Configuration files such as curl_config.h and all config-*.h no longer exist nor are generated/copied into 'src' directory, now these only exist in 'lib' directory from where curl tool sources uses them. Additionally old src/setup.h has been refactored into src/tool_setup.h which now pulls lib/setup.h The possibility of a makefile needing an include path adjustment exists. | |||
2012-02-09 | curl: use new library-side TCP_KEEPALIVE options | Dave Reisner | |
Use the new library CURLOPT_TCP_KEEPALIVE rather than disabling this via the sockopt callback. If --keepalive-time is used, apply the value to CURLOPT_TCP_KEEPIDLE and CURLOPT_TCP_KEEPINTVL. | |||
2011-10-06 | curl tool: reviewed code moved to tool_*.[ch] files | Yang Tse | |
2011-10-05 | curl tool: reviewed code moved to tool_*.[ch] files | Yang Tse | |
2011-10-05 | curl tool: code moved to tool_*.[ch] files | Yang Tse | |
2011-10-03 | curl tool: reviewed code moved to tool_*.[ch] files | Yang Tse | |
2011-09-24 | curl tool: reviewed code moved to tool_*.[ch] files | Yang Tse | |
2011-09-22 | curl tool: reviewed code moved to tool_*.[ch] files | Yang Tse | |
my_setopt and my_setopt_str no longer ignores curl_easy_setopt result. Fixed some OOM handling issues. | |||
2011-09-21 | curl tool: reviewed code moved to tool_*.[ch] files | Yang Tse | |
my_setopt and my_setopt_str no longer ignores curl_easy_setopt result. Fixed some OOM handling issues. | |||
2011-09-20 | curl tool: reviewed code moved to tool_*.[ch] files | Yang Tse | |
Overhauled FindWin32CACert() | |||
2011-09-19 | curl tool: reviewed code moved to tool_*.[ch] files | Yang Tse | |
2011-09-18 | curl tool: create tool_myfunc.[ch] which later on will hold my_* functions | Yang Tse | |
Additionally function my_useragent() now provides default User-Agent string | |||
2011-09-16 | curl tool: move 'Configurable' and free_config_fields() to tool_cfgable.[ch] | Yang Tse | |
Reviewing fields being free'd in free_config_fields() still pending | |||
2011-09-16 | curl tool: move so called 'multi_files' stuff into tool_mfiles.[ch] | Yang Tse | |
Additionally some code reorganization and direct OOM handling fixes, just another step towards fixing curl tool issues uncovered 2011-09-15 | |||
2011-09-16 | curl tool: move convert_* functions into tool_convert.[ch] | Yang Tse | |
Additionally fix data type of result vars for iconv() calls | |||
2010-11-05 | save metadata to extended file attributes | Stefan Tomanek | |
It is often convinient to track back the source of a once downloaded file; this patch makes curl store the source URL and other metadata alongside the retrieved file by using the extended attributes (if supported by the file system and enabled by --xattr). | |||
2010-08-02 | Rename CURL_SOURCES macro; revert previous rename of curl_SOURCES macro. | Guenter Knauf | |
2010-08-02 | Renamed curl_SOURCES to CURL_ALLFILES to overcome wmake's case-insensitivity. | Guenter Knauf | |
2010-07-29 | Added a comment with an alternate idea to avoid the backslash line ↵ | Guenter Knauf | |
contination character. | |||
2010-02-14 | removed trailing whitespace | Yang Tse | |
2009-07-09 | - Eric Wong introduced curlx_nonblock() that the curl tool now (re-)uses for | Daniel Stenberg | |
setting a file descriptor non-blocking. Used by the functionality Eric himself brough on June 15th. | |||
2009-06-05 | introduction of os-specific.c and os-specific.h | Yang Tse | |
2008-10-23 | moved the Curl_raw_ functions into the new lib/rawstr.c file for easier curlx_ | Daniel Stenberg | |
inclusion by the curl tool without colliding with the curl_strequal functions. | |||
2008-10-16 | compile the library file strequal.c to get the Curl_raw_equal function as | Daniel Stenberg | |
that's not exported by the lib | |||
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. | |||
2006-07-11 | Moved strdup replacement from src/main.c into src/strdup.c so it's available | Dan Fandrich | |
in libcurl as well, if necessary. | |||
2005-03-16 | Removed references to config-vms.h from the makefiles. | Dan Fandrich | |
2004-07-28 | renamed CURL_HEADERS, since it is a magic automake name we must not use | Daniel Stenberg | |
2004-07-03 | added Makefile.inc which can be included from other makefiles to reduce ↵ | Gunter Knauf | |
maintaining. |