Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-05-09 | tool_operate.c: Fixed compilation warnings | Steve Holme | |
An enumerated type is mixed with another type. | |||
2014-05-07 | tool_help: Fixed missing --login-options option | Steve Holme | |
...and removed ;OPTIONS from --user as that functionality was removed in 7.34.0. | |||
2014-05-06 | curl: bail on cookie use when built with disabled cookies | Daniel Stenberg | |
2014-04-19 | tool_writeout.c: initialize string pointer variable | Marc Hoersken | |
2014-04-19 | tool_formparse.c: fix possible use of non-null-terminated strings | Marc Hoersken | |
2014-04-18 | tool_urlglob.c: added some comments to clarify for loop conditions | Marc Hoersken | |
I was tempted to change those to >= 0 until I saw that this is actually a for loop that terminates once i underflows. | |||
2014-04-06 | Makefile.vc6: Follow up fix to commit 45d3f00803 | Steve Holme | |
2014-04-05 | Makefile.vc6: added warnless.c to fix build | Marc Hoersken | |
2014-04-04 | curl: add --proxy-header | Maciej Puzio | |
2014-03-30 | curl: stop interpreting IPv6 literals as glob patterns. | Paul Marks | |
This makes it possible to fetch from an IPv6 literal without specifying the -g option. Globbing remains available elsehwere in the URL. For example: curl http://[::1]/file[1-3].txt This creates no ambiguity, because there is no overlap between the syntax of valid globs and valid IPv6 literals. Globs contain hyphens and at most 1 colon, while IPv6 literals have no hyphens, and at least 2 colons. The peek_ipv6() parser simply whitelists a set of characters and counts colons, because the real validation happens later on. The character set includes A-Z, in case someone decides to implement support for scopes like [fe80::1%25eth0] in the future. Signed-off-by: Paul Marks <pmarks@google.com> | |||
2014-03-26 | mkhelp: generate code for --disable-manual as well | Daniel Stenberg | |
This allows configure --disable-manual to run and build without having to regenerate the src/tool_hugehelp.c file which otherwise is necessary since we ship tarballs with that file present. Reported-by: Remi Gacogne Bug: http://curl.haxx.se/bug/view.cgi?id=1350 | |||
2014-03-23 | tool_operate: Fixed uninitialised variable under some error situations | Steve Holme | |
For example when a URL is not specified or the headers file fails to open. | |||
2014-03-22 | tool_parsecfg: Reworked error handling from commit fc59a9e1 | Steve Holme | |
2014-03-22 | tool_getparam: Removed "dead assignment" code introduced in commit 1a9b58fc | Steve Holme | |
2014-03-03 | Rework Open Watcom make files to use standard Wmake features | Jiri Malak | |
Remove slash/backslash problem, now only slashes are used, Wmake automaticaly translate slash/backslash to proper version or tools are not sensitive for it. Enable spaces in path. Use internal rm command for all host platforms Add error message if old Open Watcom version is used. Some old versions exhibit build problems for Curl latest version. Now only versions 1.8, 1.9 and 2.O beta are supported | |||
2014-03-02 | tool: Do not output libcurl source for the information only parameters | Steve Holme | |
Ensure a source file isn't generated for the following informational command line parameters when --libcurl is specified: --help, --manual, --version and --engine list As the output would only include a fairly empty looking main() function and a call to curl_easy_init() and curl_easy_cleanup() when performed with --engine list. | |||
2014-03-02 | tool: Fixed libcurl source output for multiple operations | Steve Holme | |
Correctly output libcurl source code that includes multiply operations as specified by --next. Note that each operation evaluates to a single curl_easy_perform() in source code form. Also note that the output could be optimised a little so global config options are only output once rather than per operation as is presently the case. | |||
2014-03-01 | tool_metalink.h: Fixed compilation warning | Steve Holme | |
warning: declaration of 'struct GlobalConfig' will not be visible outside of this function | |||
2014-03-01 | tool: Moved internal variable isatty to the global config | Steve Holme | |
2014-03-01 | tool_operate.c: Fixed compilation error | Steve Holme | |
incompatible types - from 'OperationConfig *' to 'GlobalConfig *' | |||
2014-03-01 | tool: Moved --libcurl to the global config | Steve Holme | |
2014-03-01 | tool: Moved --progress-bar to the global config | Steve Holme | |
2014-03-01 | tool: Moved --stderr to the global config | Steve Holme | |
2014-02-28 | tool_main: Fixed a memory leak on main_init error | Dan Fandrich | |
2014-02-27 | tool_cfgable: Code policing of structure pointers | Steve Holme | |
2014-02-27 | tool: Moved --trace and --verbose to the global config | Steve Holme | |
2014-02-27 | tool_main: Forgot to initialise the first operation's global pointer | Steve Holme | |
2014-02-27 | tool: Moved --silient to the global config | Steve Holme | |
Other global options such as --libcurl, --trace and --verbose to follow. | |||
2014-02-27 | tool_cfgable: Added GlobalConfig pointer to OperationConfig | Steve Holme | |
In order to ease the moving of global options such as the error stream, updated the OperationConfig structure to point to the GlobalConfig. | |||
2014-02-26 | tool: Added support to .curlrc for URL specific options | Steve Holme | |
In addition to adding support for URL specific options via the command line with --next it is now possible to specify "next" in .curlrc. | |||
2014-02-26 | tool: Reworked argument parsing to use --next/-: | Steve Holme | |
Follow up to commit 1a9b58fcb2 to replace the : command line option with --next and -:. | |||
2014-02-26 | tool_getparam: Added initial support for --next/-: | Steve Holme | |
Added initial support for --next/-: which will be used to replace the rather confusing : command line operation what was used for the URL specific options prototype. | |||
2014-02-25 | parse_args: fix a too long source code line | Daniel Stenberg | |
2014-02-25 | tool_help: Moved --no-alpn and --no-npn to be listed alphabetically | Steve Holme | |
...and added the HTTP suffix as these options are only used for HTTP2 based connections. | |||
2014-02-25 | tool: Moved --showerror to the global config | Steve Holme | |
Other global options such as --libcurl, --trace and --verbose to follow. | |||
2014-02-25 | tool_getparam: Added global config to getparameter() | Steve Holme | |
In preparation for parsing global options added the GlobalConfig structure to the getparameter() function. | |||
2014-02-25 | tool_getparam.h: Fixed compilation warning | Steve Holme | |
warning: declaration of 'struct GlobalConfig' will not be visible outside of this function | |||
2014-02-24 | tool_cfgable: Added support for knowing the current operation | Steve Holme | |
2014-02-24 | tool_operate: Moved easy handle cleanup into tool_main | Steve Holme | |
2014-02-24 | tool_hugehelp: partially reverted 24e22e10 | Marc Hoersken | |
Compilation was not possible if manuel is disabled due this error: error: macro "hugehelp" passed 1 arguments, but takes just 0 void hugehelp(void) {} | |||
2014-02-24 | tool_main: Moved easy handle into global config structure | Steve Holme | |
2014-02-23 | tool: Fixed line longer than 79 characters from commit 705a4cb549 | Steve Holme | |
2014-02-23 | tool_main: Corrected typo from commit d6b9f054e9 in Symbian code | Steve Holme | |
2014-02-23 | tool_main: Moved OperateConfig cleanup into main_free() | Steve Holme | |
2014-02-23 | tool_main: Moved initial OperateConfig creation into main_init() | Steve Holme | |
2014-02-23 | tool_cfgable: Added global config structure | Steve Holme | |
2014-02-23 | tool_cfgable: Renamed Configurable structure to OperationConfig | Steve Holme | |
To allow for the addition of a global config structure and prevent confusion between the two. | |||
2014-02-23 | tool: Fixed incorrect return code with --version from commit c10bf9bb36 | Steve Holme | |
2014-02-23 | tool_getparam: Moved tool_help() call into operate() | Steve Holme | |
2014-02-23 | tool_getparam: Moved hugehelp() call into operate() | Steve Holme | |