Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-03-25 | url: Fixed connection re-use when using different log-in credentials | Steve Holme | |
In addition to FTP, other connection based protocols such as IMAP, POP3, SMTP, SCP, SFTP and LDAP require a new connection when different log-in credentials are specified. Fixed the detection logic to include these other protocols. Bug: http://curl.haxx.se/docs/adv_20140326A.html | |||
2014-03-25 | THANKS: 14 new friends from the 7.36.0 announcement | Daniel Stenberg | |
2014-03-25 | RELEASE-NOTES: synced with 3ebfaf6a0399b6a | Daniel Stenberg | |
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-22 | polarssl: avoid extra newlines in debug messages | Gisle Vanem | |
The debug messages printed inside PolarSSL always seems to end with a newline. So 'infof()' should not add one. Besides the trace 'line' should be 'const'. | |||
2014-03-20 | rtsp: parse "Session:" header properly | Daniel Stenberg | |
The parser skipped the initial letter, which presumably often is whitespace but doesn't have to be. Reported-by: Mike Hasselberg Bug: http://curl.haxx.se/mail/lib-2014-03/0134.html | |||
2014-03-19 | runtests.pl: verify specified test cases | Daniel Stenberg | |
To better allow arguments like "1 to 9999" without flooding the terminal with error messages, the given test cases range is now checked and only test numbers with existing files are actually run. | |||
2014-03-19 | RELEASE-NOTES: fixed typo | Dan Fandrich | |
2014-03-19 | trynextip: don't store 'ai' on failed connects... | Daniel Stenberg | |
It leads to the "next family" tries starting from the wrong point and thus fails! Bug: http://curl.haxx.se/bug/view.cgi?id=1337 Reported-by: ricker | |||
2014-03-19 | RELEASE-NOTES: synced with 47f8e99e78c | Daniel Stenberg | |
2014-03-19 | polarssl: fix possible handshake timeout issue in multi. | Gaël PORTAY | |
Because of the socket is unblocking, PolarSSL does need call to getsock to get the action to perform in multi environment. In some cases, it might happen we have not received yet all data to perform the handshake. ssh_handshake returns POLARSSL_ERR_NET_WANT_READ, the state is updated but because of the getsock has not the proper #define macro to, the library never prevents to select socket for input thus the socket will never be awaken when last data is available. Thus it leads to timeout. | |||
2014-03-18 | polarssl: break compatibility with version older than 1.3. | Gaël PORTAY | |
Remove all #ifdef/else/endif macros that ensure compatibility with polarssl version previous than 1.3. | |||
2014-03-18 | polarssl: drop use of 1.2 compatibility header. | Gaël PORTAY | |
API has changed since version 1.3. A compatibility header has been created to ensure forward compatibility for code using old API: * x509 certificate structure has been renamed to from x509_cert to x509_crt * new dedicated setter for RSA certificates ssl_set_own_cert_rsa, ssl_set_own_cert is for generic keys * ssl_default_ciphersuites has been replaced by function ssl_list_ciphersuites() This patch drops the use of the compatibly header. | |||
2014-03-18 | polarssl: added missing end-of-comment from previous commit | Daniel Stenberg | |
2014-03-17 | polarssl: now require 1.3.0+ | Daniel Stenberg | |
Also fixed a function name change in the version requirement bump | |||
2014-03-17 | polarssl: fix compilation | hasufell | |
Rename x509_cert to x509_crt and add "compat-1.2.h" include. This would still need some more thorough conversion in order to drop "compat-1.2.h" include. | |||
2014-03-15 | nss: allow to enable/disable new AES GCM cipher-suites | Kamil Dudka | |
... if built against a new enough version of NSS | |||
2014-03-15 | nss: allow to enable/disable new HMAC-SHA256 cipher-suites | Kamil Dudka | |
... if built against a new enough version of NSS | |||
2014-03-15 | nss: do not enable AES cipher-suites by default | Kamil Dudka | |
... but allow them to be enabled/disabled explicitly. The default policy should be maintained at the NSS level. | |||
2014-03-15 | tests: made the SASL modes separate keywords | Dan Fandrich | |
2014-03-15 | tests: added missing HTTP NTLM auth keywords | Dan Fandrich | |
Also, removed an unneeded strippart | |||
2014-03-15 | tests: disable valgrind on the remaining scp/sftp tests | Dan Fandrich | |
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 | |