Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-07-01 | SSL: Pinned public key hash support | moparisthebest | |
2015-07-01 | examples: provide <DESC> sections | Daniel Stenberg | |
2015-07-01 | OpenVMS: VMS Software, Inc now the supplier. | John Malmberg | |
setup-vms.h: Symbol case fixups submitted by Michael Steve build_gnv_curl_pcsi_desc.com: VSI aka as VMS Software, is now the supplier of new versions of VMS. The install kit needs to accept VSI as a producer. | |||
2015-06-30 | multi: Move http2 push function declarations to header end | Jay Satiro | |
This change necessary for binary compatibility. Prior to this change test 1135 failed due to the order of functions. | |||
2015-06-30 | symbols-in-versions: Add new http2 push symbols | Jay Satiro | |
Prior to this change test 1119 failed due to the missing symbols. | |||
2015-06-30 | RELEASE-NOTES: synced with e6749055d653 | Daniel Stenberg | |
2015-06-29 | configure: disable libidn by default | Daniel Stenberg | |
For security reasons, until there is a fix. Bug: http://curl.haxx.se/mail/lib-2015-06/0143.html Reported-by: Gustavo Grieco, Feist Josselin | |||
2015-06-29 | SSL-PROBLEMS: mention WinSSL problems in WinXP | Daniel Stenberg | |
2015-06-29 | CODE_OF_CONDUCT.md: added | Daniel Stenberg | |
Just to underscore how we treat each other in this project. Nothing new really, but could be useful for newcomers and outsiders to see our values. | |||
2015-06-25 | tool_header_cb: fflush the header stream | Daniel Stenberg | |
Flush the header stream when -D is used so that they are sent off earlier. Bug: https://github.com/bagder/curl/issues/324 Reported-by: Cédric Connes | |||
2015-06-25 | tests: Distribute CMakeLists.txt files in subdirectories | Roger Leigh | |
2015-06-24 | CURLOPT_FAILONERROR.3: mention that it closes the connection | Daniel Stenberg | |
Reported-by: bemoody Bug: https://github.com/bagder/curl/issues/325 | |||
2015-06-24 | curl_multi_setopt.3: alpha sort the options | Daniel Stenberg | |
2015-06-24 | curl_multi_setopt.3: add the new push options | Daniel Stenberg | |
2015-06-24 | http2: Use nghttp2 library error code for error return value | Tatsuhiro Tsujikawa | |
2015-06-24 | http2: Harden header validation for curl_pushheader_byname | Tatsuhiro Tsujikawa | |
Since we do prefix match using given header by application code against header name pair in format "NAME:VALUE", and VALUE part can contain ":", we have to careful about existence of ":" in header parameter. ":" should be allowed to match HTTP/2 pseudo-header field, and other use of ":" in header must be treated as error, and curl_pushheader_byname should return NULL. This commit implements this behaviour. | |||
2015-06-24 | CURLMOPT_PUSHFUNCTION.3: Remove unused variable | Tatsuhiro Tsujikawa | |
2015-06-24 | CURLMOPT_PUSHFUNCTION.3: added example | Daniel Stenberg | |
2015-06-24 | http2: curl_pushheader_byname now takes a const char * | Daniel Stenberg | |
2015-06-24 | http2-serverpush.c: example code | Daniel Stenberg | |
2015-06-24 | http2: free all header memory after the push callback | Daniel Stenberg | |
2015-06-24 | http2: init the pushed transfer properly | Daniel Stenberg | |
2015-06-24 | http2: fixed the header accessor functions for the push callback | Daniel Stenberg | |
2015-06-24 | http2: setup the new pushed stream properly | Daniel Stenberg | |
2015-06-24 | http2: initial implementation of the push callback | Daniel Stenberg | |
2015-06-24 | http2: initial HTTP/2 server push types/docs | Daniel Stenberg | |
2015-06-23 | test1531: verify POSTFIELDSIZE set after add_handle | Daniel Stenberg | |
Following the fix made in 903b6e05565bf. | |||
2015-06-23 | pretransfer: init state.infilesize here, not in add_handle | Daniel Stenberg | |
... to properly support that options are set to the handle after it is added to the multi handle. Bug: http://curl.haxx.se/mail/lib-2015-06/0122.html Reported-by: Stefan Bühler | |||
2015-06-21 | tool_help: fix --tlsv1 help text to use >= for TLSv1 | Lior Kaplan | |
2015-06-20 | INSTALL: Advise use of non-native SSL for Windows <= XP | Jay Satiro | |
Advise that WinSSL in versions <= XP will not be able to connect to servers that no longer support the legacy handshakes and algorithms used by those versions, and to use an alternate backend like OpenSSL instead. Bug: https://github.com/bagder/curl/issues/253 Reported-by: zenden2k <zenden2k@gmail.com> | |||
2015-06-19 | curl_easy_setopt.3: restore contents removed by mistake | Kamil Dudka | |
... in commit curl-7_43_0-18-g570076e | |||
2015-06-19 | curl_easy_setopt.3: mention CURLOPT_PIPEWAIT | Daniel Stenberg | |
2015-06-18 | cookie: Fix bug in export if any-domain cookie is present | Jay Satiro | |
In 3013bb6 I had changed cookie export to ignore any-domain cookies, however the logic I used to do so was incorrect, and would lead to a busy loop in the case of exporting a cookie list that contained any-domain cookies. The result of that is worse though, because in that case the other cookies would not be written resulting in an empty file once the application is terminated to stop the busy loop. | |||
2015-06-18 | FTP: fixed compiling with --disable-proxy, broken in b88f980a | Dan Fandrich | |
2015-06-18 | tool: always provide negotiate/kerberos options | Daniel Stenberg | |
libcurl can still be built with it, even if the tool is not. Maintain independence! | |||
2015-06-18 | TODO: Support IDNA2008 | Daniel Stenberg | |
2015-06-18 | Makefile.m32: add support for CURL_LDFLAG_EXTRAS | Viktor Szakats | |
It is similar to existing CURL_CFLAG_EXTRAS, but for extra linker option. | |||
2015-06-18 | RTSP: removed another piece of dead code | Daniel Stenberg | |
Coverity CID 1306668 | |||
2015-06-18 | openssl: fix use of uninitialized buffer | Daniel Stenberg | |
Make sure that the error buffer is always initialized and simplify the use of it to make the logic easier. Bug: https://github.com/bagder/curl/issues/318 Reported-by: sneis | |||
2015-06-18 | examples: more descriptions | Daniel Stenberg | |
2015-06-18 | examples: add descriptions with <DESC> | Daniel Stenberg | |
Using this fixed format for example descriptions, we can generate a better list on the web site. | |||
2015-06-18 | libcurl-errors.3: fix typo | Daniel Stenberg | |
2015-06-18 | curl_easy_setopt.3: option order doesn't matter | Daniel Stenberg | |
2015-06-18 | openssl: fix build with BoringSSL | Daniel Stenberg | |
OPENSSL_load_builtin_modules does not exist in BoringSSL. Regression from cae43a1 | |||
2015-06-17 | openssl: Fix build with openssl < ~ 0.9.8f | Paul Howarth | |
The symbol SSL3_MT_NEWSESSION_TICKET appears to have been introduced at around openssl 0.9.8f, and the use of it in lib/vtls/openssl.c breaks builds with older openssls (certainly with 0.9.8b, which is the latest older version I have to try with). | |||
2015-06-17 | FTP: do the HTTP CONNECT for data connection blocking | Daniel Stenberg | |
** WORK-AROUND ** The introduced non-blocking general behaviour for Curl_proxyCONNECT() didn't work for the data connection establishment unless it was very fast. The newly introduced function argument makes it operate in a more blocking manner, more like it used to work in the past. This blocking approach is only used when the FTP data connecting through HTTP proxy. Blocking like this is bad. A better fix would make it work more asynchronously. Bug: https://github.com/bagder/curl/issues/278 | |||
2015-06-17 | bump: start the journey toward 7.44.0 | Daniel Stenberg | |
2015-06-17 | CURLOPT_ERRORBUFFER.3: Fix example, escape backslashes | Jay Satiro | |
2015-06-17 | CURLOPT_ERRORBUFFER.3: Improve example | Jay Satiro | |
2015-06-17 | RELEASE-NOTES: 7.43.0 release | Daniel Stenberg | |