Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-10-26 | gskit.c: Code policing following commit 2cc9246477285d | Steve Holme | |
Corrected 80 character line length error and pointer declarations (some of which were previously incorrect) | |||
2013-10-26 | test907: Corrected DIGEST-MD5 response given in commit 820ed48a0088cd | Steve Holme | |
As the URI, which is contained within the DIGEST-MD5 response, is constructed from the service and realm, the encoded message differs from that generated under POP3. | |||
2013-10-25 | RELEASE-NOTES: Synced with d24b7953c2132a | Steve Holme | |
2013-10-25 | tests: Added SMTP OAUTH2 authentication with initial response test | Steve Holme | |
2013-10-25 | tests: Added SMTP NTLM authentication with initial response test | Steve Holme | |
2013-10-25 | tests: Added SMTP OAUTH2 authentication test | Steve Holme | |
2013-10-25 | tests: Added SMTP DIGEST-MD5 authentication test | Steve Holme | |
2013-10-25 | tests: Regrouped SMTP authentication tests | Steve Holme | |
2013-10-25 | OS400: sync RPG wrapper, zlib support, fix header file names, ... | Patrick Monnerat | |
IFS compilation support, SSL GSKit backend by default, TLSv1.[12] support in GSKit for OS400 >= V7R1, no more tabs in make scripts. | |||
2013-10-24 | sasl: Fixed memory leak in OAUTH2 message creation | Steve Holme | |
2013-10-23 | ftpserver.pl: Added support for empty pop3 authentication data | Steve Holme | |
2013-10-23 | CURLOPT_RESOLVE: mention they don't time-out | Daniel Stenberg | |
Clarify in the documentation that DNS entries added with CURLOPT_RESOLVE won't time-out. Bug: http://curl.haxx.se/mail/lib-2013-10/0062.html Reported-by: Romulo Ceccon | |||
2013-10-23 | tests: Added POP3 OAUTH2 authentication test | Steve Holme | |
2013-10-23 | tests: Added empty response support to custom replies | Steve Holme | |
...and fixed up test869 as DIGEST-MD transcript is as follows: S: Challenge C: Authentication String S: Continue Response C: Empty String | |||
2013-10-23 | sasl: fix compiler warning | Daniel Stenberg | |
error: unused variable 'table16' | |||
2013-10-23 | tests: Added POP3 DIGEST-MD5 authentication test | Steve Holme | |
2013-10-22 | configure: check for long long when building with cyassl | Daniel Stenberg | |
cyassl/ctaocrypt/types.h needs SIZEOF_LONG_LONG Reported-by: Chris Conlon | |||
2013-10-22 | test1240: verify 867b52a7ac52 (glob ranges with text to the right) | Daniel Stenberg | |
2013-10-22 | glob: fix regression from commit 5ca96cb844 | Daniel Stenberg | |
Plain strings after glob ranges/lists weren't treated correctly but caused broken URLs to get used. Reported-by: Javier Barroso | |||
2013-10-21 | Adding a .travis.yml file to use the travis-ci.org | Rémy Léone | |
From wikipedia: Travis CI is a hosted, distributed continuous integration service used to build and test projects hosted at GitHub. Travis CI is configured by adding a file named .travis.yml, which is a YAML format text file, to the root directory of the GitHub repository. Travis CI automatically detects when a commit has been made and pushed to a GitHub repository that is using Travis CI, and each time this happens, it will try to build the project and run tests. This includes commits to all branches, not just to the master branch. When that process has completed, it will notify a developer in the way it has been configured to do so — for example, by sending an email containing the test results (showing success or failure), or by posting a message on an IRC channel. It can be configured to run the tests on a range of different machines, with different software installed (such as older versions of a programming language, to test for compatibility). | |||
2013-10-21 | ssh: initialize per-handle data in ssh_connect() | Kamil Dudka | |
... if not already initialized. This fixes a regression introduced by commit 4ad8e142da463ab208d5b5565e53291c8e5ef038, which caused test619 to intermittently fail on certain machines (namely Fedora build hosts). | |||
2013-10-20 | curl.1: add missing exit-code | Gisle Vanem | |
I noted a missing text for exit-code 89 in docs/curl.1 | |||
2013-10-20 | cmake: unbreak for non-Windows platforms | Daniel Stenberg | |
Patch-by: Oliver Kuckertz Bug: http://curl.haxx.se/bug/view.cgi?id=1292 | |||
2013-10-20 | ftpserver.pl: Fixed syntax error from commit 5b31b38c27bb7a | Steve Holme | |
2013-10-19 | test866: Fixed user response from commit 7f7fbe7fbdb449 | Steve Holme | |
2013-10-19 | ftpserver.pl: Fixed processing of POP3 authentication strings | Steve Holme | |
...and corrected response when check fails from 500 to -ERR. | |||
2013-10-19 | tests: Added POP3 NTLM authentication test | Steve Holme | |
2013-10-19 | tests: Added POP3 CRAM-MD5 authentication test | Steve Holme | |
2013-10-19 | tests: Added POP3 login authentication test | Steve Holme | |
2013-10-19 | tests: Added POP3 plain authentication test | Steve Holme | |
2013-10-19 | tests: Added POP3 APOP authentication test | Steve Holme | |
2013-10-19 | ftpserver.pl: Added support for APOP POP3 authentication | Steve Holme | |
2013-10-19 | tests: Added POP3 RSET test | Steve Holme | |
2013-10-18 | RELEASE-NOTES: Synced with ce61510127ea60 | Steve Holme | |
2013-10-18 | email: Fixed QUIT / LOGOUT being sent when SSL connect fails | Steve Holme | |
2013-10-18 | curl_sasl: initialize NSS before using crypto | Kamil Dudka | |
2013-10-17 | SSL: Follow up work to commits 6a1363128f1107 and 87861c9b0e8155 | Steve Holme | |
Changed the failure code when TLS v1.1 and v1.2 is requested but not supported by older OpenSSL versions, following review from libcurl peers, and reduced the number of required preprocessor if statements. | |||
2013-10-16 | SSL: Added unsupported cipher version check for OpenSSL | Steve Holme | |
...with the use of CURL_SSLVERSION_TLSv1_1 and CURL_SSLVERSION_TLSv1_2 being conditional on OpenSSL v1.0.1 as the appropriate flags are not supported under earlier versions. | |||
2013-10-16 | DOCS: Added libcurl version number to CURLOPT_SSLVERSION | Steve Holme | |
2013-10-16 | SSL: Corrected version number for new symbols from commit ad34a2d5c87c7f | Steve Holme | |
2013-10-16 | SSL: Corrected typo from commit 87861c9b0e8155 | Steve Holme | |
2013-10-16 | SSL: Fixed OpenSSL builds prior to v1.0.1 | Steve Holme | |
Commit ad34a2d5c87c7f relies on definitions that are only present in OpenSSL v1.0.1 and up. This quick fix allows the builds that use older versions of OpenSSL to continue building. | |||
2013-10-15 | test906: Fixed failing test on some platforms | Steve Holme | |
Bug: http://sourceforge.net/p/curl/bugs/1291 Reported-by: David Walser | |||
2013-10-15 | NSS: acknowledge the --no-sessionid/CURLOPT_SSL_SESSIONID_CACHE option | Paul Donohue | |
2013-10-15 | ssh: Handle successful SSH_USERAUTH_NONE | Tyler Hall | |
According to the documentation for libssh2_userauth_list(), a NULL return value is not necessarily an error. You must call libssh2_userauth_authenticated() to determine if the SSH_USERAUTH_NONE request was successful. This fixes a segv when using sftp on a server that allows logins with an empty password. When NULL was interpreted as an error, it would free the session but not flag an error since the libssh2 errno would be clear. This resulted in dereferencing a NULL session pointer. Signed-off-by: Tyler Hall <tylerwhall@gmail.com> | |||
2013-10-15 | usercertinmem: fix memory leaks | Ishan SinghLevett | |
2013-10-15 | build: distribute and install libcurl.m4 by default | Dave Reisner | |
2013-10-15 | tool: use XFERFUNCTION to save some casts | Dave Reisner | |
2013-10-15 | curl.1: fix typo conjuction -> conjunction | Alessandro Ghedini | |
2013-10-15 | curl: document the new --tlsv1.[012] options | Daniel Stenberg | |