Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-02-11 | ftp: accept all 2xx responses to the PORT command | Patrick Monnerat | |
2015-02-09 | openssl: Disable OCSP in old versions of OpenSSL | Steve Holme | |
Versions of OpenSSL prior to v0.9.8h do not support the necessary functions for OCSP stapling. | |||
2015-02-09 | http2: Fix bug that associated stream canceled on PUSH_PROMISE | Tatsuhiro Tsujikawa | |
Previously we don't ignore PUSH_PROMISE header fields in on_header callback. It makes header values mixed with following HEADERS, resulting protocol error. | |||
2015-02-09 | polarssl: Fix exclusive SSL protocol version options | Jay Satiro | |
Prior to this change the options for exclusive SSL protocol versions did not actually set the protocol exclusive. http://curl.haxx.se/mail/lib-2015-01/0002.html Reported-by: Dan Fandrich | |||
2015-02-09 | gskit: Fix exclusive SSLv3 option | Jay Satiro | |
2015-02-09 | curl.1: clarify that -X is used for all requests | Daniel Stenberg | |
Reported-by: Jon Seymour | |||
2015-02-08 | curl.1: add warning when using -H and redirects | Daniel Stenberg | |
2015-02-07 | schannel: Removed curl_ prefix from source files | Steve Holme | |
Removed the curl_ prefix from the schannel source files as discussed with Marc and Daniel at FOSDEM. | |||
2015-02-06 | md5: use axTLS's own MD5 functions when available | Daniel Stenberg | |
2015-02-06 | MD(4|5): make the MD4_* and MD5_* functions static | Daniel Stenberg | |
2015-02-06 | axtls: fix conversion from size_t to int warning | Daniel Stenberg | |
2015-02-05 | ftp: Use 'CURLcode result' for curl result codes | Steve Holme | |
2015-02-05 | openssl: SSL_SESSION->ssl_version no longer exist | Daniel Stenberg | |
The struct went private in 1.0.2 so we cannot read the version number from there anymore. Use SSL_version() instead! Reported-by: Gisle Vanem Bug: http://curl.haxx.se/mail/lib-2015-02/0034.html | |||
2015-02-04 | unit1600: Fix compilation when NTLM is disabled | Dan Fandrich | |
2015-02-04 | MD5: fix compiler warnings and code style nits | Daniel Stenberg | |
2015-02-04 | MD5: replace implementation | Daniel Stenberg | |
The previous one was "encumbered" by RSA Inc - to avoid the licensing restrictions it has being replaced. This is the initial import, inserting the md5.c and md5.h files from http://openwall.info/wiki/people/solar/software/public-domain-source-code/md5 Code-by: Alexander Peslyak | |||
2015-02-04 | MD4: fix compiler warnings and code style nits | Daniel Stenberg | |
2015-02-04 | MD4: replace implementation | Daniel Stenberg | |
The previous one was "encumbered" by RSA Inc - to avoid the licensing restrictions it has being replaced. This is the initial import, inserting the md4.c and md4.h files from http://openwall.info/wiki/people/solar/software/public-domain-source-code/md4 Code-by: Alexander Peslyak | |||
2015-02-04 | telnet: Prefer 'CURLcode result' for curl result codes | Steve Holme | |
2015-02-04 | hostasyn: Prefer 'CURLcode result' for curl result codes | Steve Holme | |
2015-02-04 | schannel: Prefer 'CURLcode result' for curl result codes | Steve Holme | |
2015-02-03 | unit1601: MD5 unit tests | Daniel Stenberg | |
2015-02-03 | unit1600: unit test for Curl_ntlm_core_mk_nt_hash | Daniel Stenberg | |
2015-02-03 | unit1600: NTLM unit test | Daniel Stenberg | |
2015-02-03 | tests/README: add a new range, clean up some language | Daniel Stenberg | |
2015-02-03 | opts: CURLOPT_CAINFO availability depends on SSL engine | Jay Satiro | |
2015-02-03 | getpass: protect include with proper #ifdef | Daniel Stenberg | |
Reported-by: Tamir | |||
2015-02-03 | getpass_r: read from stdin, not stdout! | Daniel Stenberg | |
The file number used was wrong. This bug was introduced over 10 years ago, proving this function isn't used much... Bug: http://curl.haxx.se/bug/view.cgi?id=1476 Reported-by: Tamir | |||
2015-02-02 | test1135: verify the CURL_EXTERN order in header files | Daniel Stenberg | |
2015-02-02 | Makefile.am: fix 'make distcheck' | Daniel Stenberg | |
... by removing generated files from the *_DIST variable [*] and instead generate them with a .dist suffix, since that is then handled and put into the release archive by our generic dist-hook. [*] = 'make distcheck' fails with non-existing files listed there | |||
2015-02-02 | curl_sasl.c: More code policing | Steve Holme | |
Better use of 80 character line limit, comment corrections and line spacing preferences. | |||
2015-02-02 | libcurl-symbols: first basic shot for autogenerated docs | Daniel Stenberg | |
2015-02-02 | FAQ: minor edit of 3.22 | Daniel Stenberg | |
2015-02-02 | build: Added removal of Visual Studio project files | Steve Holme | |
Added the removal of the locally generated project files so one may revert to a clean repository. | |||
2015-02-02 | build: Renamed top level Visual Studio solution files | Steve Holme | |
In preparation for adding the test suite and examples projects renamed the top level "all" solution files to better describe what they are. This will also enable us to use "curl" rather than "curlsrc" for the command line tool solution and project files, which will simplify some of the configuration. | |||
2015-02-02 | build: Enabled DEBUGBUILD in Visual Studio debug builds | Steve Holme | |
Defined the DEBUGBUILD pre-processor variable to allow extra logging, which is particularly useful in debug builds, as we use this and Visual Studio typically uses _DEBUG. We could define DEBUBBUILD, in curl_setup.h, when _MSC_VER and _DEBUG is defined but that would also affect the makefile based builds which we probably don't want to do. | |||
2015-02-02 | build: Removed unused Visual Studio bscmake settings | Steve Holme | |
2015-02-02 | CURLOPT_HTTP_VERSION.3: CURL_HTTP_VERSION_2_0 added in 7.33.0 | Daniel Stenberg | |
And modify the text to refer to HTTP 2 as it isn't called "2.0". Reported-By: Michael Wallner | |||
2015-01-31 | TODO: moved WinSSL/SChannel todo items into docs | Marc Hoersken | |
2015-01-29 | CURLOPT_SEEKFUNCTION.3: also when server closes a connection | Michael Kaufmann | |
2015-01-29 | curl_sasl.c: Fixed compilation warning when cryptography is disabled | Steve Holme | |
curl_sasl.c:1506: warning: unused variable 'chlg' | |||
2015-01-28 | curl_sasl.c: Fixed compilation warning when verbose debug output disabled | Steve Holme | |
curl_sasl.c:1317: warning: unused parameter 'conn' | |||
2015-01-28 | ntlm_core: Use own odd parity function when crypto engine doesn't have one | Steve Holme | |
2015-01-28 | ntlm_core: Prefer sizeof(key) rather than hard coded sizes | Steve Holme | |
2015-01-28 | ntlm_core: Added consistent comments to DES functions | Steve Holme | |
2015-01-28 | des: Added Curl_des_set_odd_parity() | Steve Holme | |
Added Curl_des_set_odd_parity() for use when cryptography engines don't include this functionality. | |||
2015-01-28 | tests: Grouped SMTP SASL EXTERNAL tests with other SMTP tests | Steve Holme | |
2015-01-28 | tests: Grouped POP3 SASL EXTERNAL tests with other POP3 tests | Steve Holme | |
2015-01-28 | tests: Grouped IMAP SASL EXTERNAL tests with other IMAP tests | Steve Holme | |
2015-01-28 | sasl: Minor code policing and grammar corrections | Steve Holme | |