Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-03-15 | valgrind.supp: added another test 165 suppression | Dan Fandrich | |
This one seems to come and go as the optimizer decides how best to inline some functions. | |||
2014-03-15 | ssh: prevent a logic error that could result in an infinite loop | Dan Fandrich | |
2014-03-14 | docs: fixed a bunch of typos | Dan Fandrich | |
2014-03-14 | test640/1: add tests for --head with sftp and scp | Dan Fandrich | |
This option is currently rather useless with these protocols when no quote command is given, but it is valid. | |||
2014-03-14 | ssh: removed a redundant close state transition | Dan Fandrich | |
2014-03-14 | ssh: abort immediately on a header callback error | Dan Fandrich | |
2014-03-14 | chunked-encoding: provide a readable error string for chunked errors | Daniel Stenberg | |
2014-03-11 | TODO: remove http2, we now have it | Daniel Stenberg | |
2014-03-10 | http2: free resources on disconnect | Tatsuhiro Tsujikawa | |
... and use Curl_safefree() instead of free() | |||
2014-03-10 | openssl: info massage with SSL version used | Daniel Stenberg | |
Patch-by: byte_bucket | |||
2014-03-09 | RELEASE-NOTES: Synced with 8ddda0e999 | Steve Holme | |
2014-03-09 | README.http2: clarify the build prerequisites | Daniel Stenberg | |
2014-03-09 | SSL-PROBLEMS: add "missing intermediate certificates" piece | Daniel Stenberg | |
2014-03-08 | SSL-PROBLEMS: describes common curl+SSL problems | Daniel Stenberg | |
2014-03-08 | docs: remove documentation on setting up krb4 support | Nick Zitzmann | |
The information about building with Kerberos4 support was half a year out of date. We dropped support for that. | |||
2014-03-06 | ssh: fix compiler warning converting ssize_t to int | Daniel Stenberg | |
2014-03-06 | ssh: Fixed a style warning | Dan Fandrich | |
Also, combined a couple of #ifdef sections | |||
2014-03-06 | ssh: Pass errors from libssh2_sftp_read up the stack | Dan Fandrich | |
2014-03-06 | parse_remote_port: error out on illegal port numbers better | Daniel Stenberg | |
2014-03-05 | remote_port: allow connect to port 0 | Daniel Stenberg | |
Port number zero is perfectly allowed to connect to. I moved to storing the remote port number in an int so that -1 means undefined and 0-65535 can be used for legitimate port numbers. | |||
2014-03-03 | multi_runsingle: move timestamp into INIT | Daniel Stenberg | |
Setting the TIMER_STARTSINGLE timestamp first in CONNECT has the drawback that for actions that go back to the CONNECT state, the time stamp is reset and for the multi_socket API there's no corresponding Curl_expire() then so the timeout logic gets wrong! Reported-by: Brad Spencer Bug: http://curl.haxx.se/mail/lib-2014-02/0036.html | |||
2014-03-03 | hostcheck: update comment after previous change | Daniel Stenberg | |
2014-03-03 | hostcheck: Curl_cert_hostcheck is not used by NSS builds | Daniel Stenberg | |
2014-03-03 | configure: call it GSS-API | Michael Osipov | |
... since that’s how the RFC calls it. | |||
2014-03-03 | x509asn: moved out Curl_verifyhost from NSS builds | Daniel Stenberg | |
... as it isn't used then! | |||
2014-03-03 | NSS: avoid compiler warnings when built without http2 support | Daniel Stenberg | |
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 | parsedate: Fixed compilation warning | Jiri Malak | |
Remove compilation message for platforms where size of long type is equal size of int type. | |||
2014-03-02 | RELEASE-NOTES: Synced with 7fef4016de | Steve Holme | |
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 | transfer.c: Fixed non-HTTP2 builds from commit cde0cf7c5e | Steve Holme | |
2014-02-28 | Fix bug that HTTP/2 hangs if whole response body is read with headers | Tatsuhiro Tsujikawa | |
For HTTP/2, we may read up everything including responde body with header fields in Curl_http_readwrite_headers. If no content-length is provided, curl waits for the connection close, which we emulate it using conn->proto.httpc.closed = TRUE. The thing is if we read everything, then http2_recv won't be called and we cannot signal the HTTP/2 stream has closed. As a workaround, we return nonzero from data_pending to call http2_recv. | |||
2014-02-28 | http2: build with current nghttp2 version | Daniel Stenberg | |
nghttp2 has yet again extended its callback struct and this is an attempt to make curl compile with nghttp2 from current git | |||
2014-02-28 | tool_main: Fixed a memory leak on main_init error | Dan Fandrich | |
2014-02-28 | test96: Updated accordly for recent changes | Steve Holme | |
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. |