Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-11-01 | openssl: Use 'CURLcode result' | Steve Holme | |
...and some minor code style changes. | |||
2014-11-01 | ftplistparser: We prefer 'CURLcode result' | Steve Holme | |
2014-10-31 | opts: Use common wording for user/password option names | Steve Holme | |
2014-10-31 | CURLOPT_CONNECT_ONLY.3: Removed "This option is implemented for..." text | Steve Holme | |
As this is covered by the PROTOCOLS section and saves having to update two parts of the document with the same information in future. | |||
2014-10-31 | CURLOPT_GSSAPI_DELEGATION.3: Use GSS-API rather than GSSAPI | Steve Holme | |
As implementations are refereed to GSS-API libraries as per the RFC and GSSAPI typically refers to an authentication mechanism. | |||
2014-10-31 | CURLOPT_CONNECT_ONLY.3: Fixed incomplete protocol list | Steve Holme | |
Added missing IMAP to the protocol list. | |||
2014-10-30 | code cleanup: Use 'CURLcode result' | Steve Holme | |
2014-10-30 | curl_easy_setopt.3: Fixed lots of typos | Steve Holme | |
2014-10-30 | curl_easy_setopt.3: Moved CURLOPT_DIRLISTONLY into PROTOCOL OPTIONS | Steve Holme | |
...as this option affects more that just FTP. | |||
2014-10-30 | build: added Watcom support to build with WinSSL. | Guenter Knauf | |
2014-10-30 | CURLOPT_PINNEDPUBLICKEY.3: added details | Daniel Stenberg | |
2014-10-30 | CURLOPT_CUSTOMREQUEST.3: Fixed incomplete protocol list | Steve Holme | |
Whilst the description included information about SMTP, the protocol list only showed "TTP, FTP, IMAP, POP3". | |||
2014-10-30 | CURLOPT_DIRLISTONLY.3: Added information about the usage in POP3 | Steve Holme | |
2014-10-29 | openssl: enable NPN separately from ALPN | Daniel Stenberg | |
... and allow building with nghttp2 but completely without NPN and ALPN, as nghttp2 can still be used for plain-text HTTP. Reported-by: Lucas Pardue | |||
2014-10-29 | configure.ac: remove checks for OpenSSL NPN/ALPN funcs again | Daniel Stenberg | |
... since the conditional in the code are now based on OpenSSL versions instead to better support non-configure builds. | |||
2014-10-29 | opts: added some "SEE ALSO" references | Daniel Stenberg | |
2014-10-29 | RELEASE-NOTES: Synced with 32913182dc | Steve Holme | |
2014-10-29 | vtls.c: Fixed compilation warning | Steve Holme | |
conversion from 'size_t' to 'unsigned int', possible loss of data | |||
2014-10-29 | sspi: Return CURLE_LOGIN_DENIED on AcquireCredentialsHandle() failure | Steve Holme | |
Return a more appropriate error, rather than CURLE_OUT_OF_MEMORY when acquiring the credentials handle fails. This is then consistent with the code prior to commit f7e24683c4 when log-in credentials were empty. | |||
2014-10-29 | sasl_sspi: Allow DIGEST-MD5 to use current windows credentials | Steve Holme | |
Fixed the ability to use the current log-in credentials with DIGEST-MD5. I had previously disabled this functionality in commit 607883f13c as I couldn't get this to work under Windows 8, however, from testing HTTP Digest authentication through Windows SSPI and then further testing of this code I have found it works in Windows 7. Some further investigation is required to see what the differences are between Windows 7 and 8, but for now enable this functionality as the code will return an error when AcquireCredentialsHandle() fails. | |||
2014-10-29 | transfer: drop the code handling the ssl_connect_retry flag | Kamil Dudka | |
Its last use has been removed by the previous commit. | |||
2014-10-29 | nss: drop the code for libcurl-level downgrade to SSLv3 | Kamil Dudka | |
This code was already deactivated by commit ec783dc142129d3860e542b443caaa78a6172d56. | |||
2014-10-29 | openssl: fix a line length warning | Kamil Dudka | |
2014-10-29 | Added NetWare support to build with nghttp2. | Guenter Knauf | |
2014-10-29 | Fixed error message since we require ALPN support. | Guenter Knauf | |
2014-10-29 | Check for ALPN via OpenSSL version number. | Guenter Knauf | |
This check works also with to non-configure platforms. | |||
2014-10-28 | sasl_sspi: Fixed typo in comment | Steve Holme | |
2014-10-28 | code cleanup: We prefer 'CURLcode result' | Steve Holme | |
2014-10-28 | TODO: consider supporting STAT | Daniel Stenberg | |
2014-10-28 | mk-ca-bundle: spell fix "version" | Daniel Stenberg | |
2014-10-27 | HTTP: return larger than 3 digit response codes too | Daniel Stenberg | |
HTTP 1.1 is clearly specified to only allow three digit response codes, and libcurl used sscanf("%3d") for that purpose. This made libcurl support smaller numbers but not larger. It does now, but we will not make any specific promises nor document this further since it is going outside of what HTTP is. Bug: http://curl.haxx.se/bug/view.cgi?id=1441 Reported-by: Balaji | |||
2014-10-26 | src/: remove version.h.dist from gitignore | Daniel Stenberg | |
It has not been used since commit f7bfdbab in 2011 | |||
2014-10-26 | ntlm: We prefer 'CURLcode result' | Steve Holme | |
Continuing commit 0eb3d15ccb more return code variable name changes. | |||
2014-10-26 | Cosmetics: lowercase non-special subroutine names. | Guenter Knauf | |
2014-10-26 | RELEASE-NOTES: Synced with 07ac29a058 | Steve Holme | |
2014-10-26 | http_negotiate: We prefer 'CURLcode result' | Steve Holme | |
Continuing commit 0eb3d15ccb more return code variable name changes. | |||
2014-10-26 | http_negotiate: Fixed missing check for USE_SPNEGO | Steve Holme | |
2014-10-26 | sspi: Synchronization of cleanup code between auth mechanisms | Steve Holme | |
2014-10-26 | sspi: Renamed max token length variables | Steve Holme | |
Code cleanup to try and synchronise code between the different SSPI based authentication mechanisms. | |||
2014-10-26 | sspi: Renamed expiry time stamp variables | Steve Holme | |
Code cleanup to try and synchronise code between the different SSPI based authentication mechanisms. | |||
2014-10-26 | sspi: Only call CompleteAuthToken() when complete is needed | Steve Holme | |
Don't call CompleteAuthToken() after InitializeSecurityContext() has returned SEC_I_CONTINUE_NEEDED as this return code only indicates the function should be called again after receiving a response back from the server. This only affected the Digest and NTLM authentication code. | |||
2014-10-26 | Added the "flaky" keyword to a number of tests | Dan Fandrich | |
Each shows evidence of flakiness on at least one platform on the autobuilds. Users can use this keyword to skip these tests if desired. | |||
2014-10-26 | ntlm: Return all errors from Curl_ntlm_core_mk_nt_hash() | Steve Holme | |
For consistency with other areas of the NTLM code propagate all errors from Curl_ntlm_core_mk_nt_hash() up the call stack rather than just CURLE_OUT_OF_MEMORY. | |||
2014-10-26 | ntlm: Return CURLcode from Curl_ntlm_core_mk_lm_hash() | Steve Holme | |
2014-10-26 | ntlm: Use 'CURLcode result' | Steve Holme | |
Continuing commit 0eb3d15ccb more return code variable name changes. | |||
2014-10-25 | ntlm: Only define ntlm data structure when USE_NTLM is defined | Steve Holme | |
2014-10-25 | ntlm: Changed handles to be dynamic like other SSPI handles | Steve Holme | |
Code cleanup to try and synchronise code between the different SSPI based authentication mechanisms. | |||
2014-10-25 | ntlm: Renamed handle variables to match other SSPI structures | Steve Holme | |
Code cleanup to try and synchronise code between the different SSPI based authentication mechanisms. | |||
2014-10-25 | ntlm: Renamed SSPI based input token variables | Steve Holme | |
Code cleanup to try and synchronise code between the different SSPI based authentication mechanisms. | |||
2014-10-25 | ntlm: We prefer 'CURLcode result' | Steve Holme | |
Continuing commit 0eb3d15ccb more return code variable name changes. |