Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-02-09 | CURLOPT_SSL_VERIFYPEER.3: also the https proxy version | Daniel Stenberg | |
2017-02-09 | examples/multithread.c: link to our multi-thread docs | Daniel Stenberg | |
... instead of the OpenSSL mutex page. | |||
2017-02-07 | THANKS-filter: polish some recent contributors | Daniel Stenberg | |
2017-02-06 | cmdline-opts: Fixed build and test in out of source tree builds | Dan Fandrich | |
2017-02-06 | use *.sourceforge.io and misc URL updates | Viktor Szakats | |
Ref: https://sourceforge.net/blog/introducing-https-for-project-websites/ Closes: https://github.com/curl/curl/pull/1247 | |||
2017-02-06 | docs: Add more HTTPS proxy documentation | Jay Satiro | |
- Document HTTPS proxy type. - Document --write-out %{proxy_ssl_verify_result}. - Document SOCKS proxy + HTTP/HTTPS proxy combination. HTTPS proxy support was added in 7.52.0 for OpenSSL, GnuTLS and NSS. Ref: https://github.com/curl/curl/commit/cb4e2be | |||
2017-01-29 | docs: we no longer ship HTML versions of man pages | Daniel Stenberg | |
... refer to the web site for the web versions. | |||
2017-01-29 | docs: proofread README.netware README.win32 | railsnewbie257 | |
Closes #1231 | |||
2017-01-28 | polarssl: fix hangs | Michael Kaufmann | |
This bugfix is similar to commit c111178bd4. | |||
2017-01-27 | TODO: remove "Support TLS v1.3" | Daniel Stenberg | |
Support is trickling in already. | |||
2017-01-24 | INTERNALS.md: language improvements | railsnewbie257 | |
Closes #1226 | |||
2017-01-23 | VC: remove the makefile.vc6 build infra | Daniel Stenberg | |
The winbuild/ build files is now the single MSVC makefile build choice. Closes #1215 | |||
2017-01-23 | cmdline-opts/gen.pl: Open input files in CRLF mode | Jay Satiro | |
On Windows it's possible to have input files with CRLF line endings and a perl that defaults to LF line endings (eg msysgit). Currently that results in generator output of mixed line endings of CR, LF and CRLF. This change fixes that issue in the most succinct way by opening the files in :crlf text mode even when the perl being used does not default to that mode. (On operating systems that don't have a separate text mode it's essentially a no-op.) The output continues to be in the perl's native line ending. | |||
2017-01-23 | docs/curl.1: generate from the cmdline-opts script | Daniel Stenberg | |
2017-01-19 | CURLOPT_BUFFERSIZE: support enlarging receive buffer | Richy Kim | |
Replace use of fixed macro BUFSIZE to define the size of the receive buffer. Reappropriate CURLOPT_BUFFERSIZE to include enlarging receive buffer size. Upon setting, resize buffer if larger than the current default size up to a MAX_BUFSIZE (512KB). This can benefit protocols like SFTP. Closes #1222 | |||
2017-01-19 | KNOWN_BUGS: HTTP/2 server push enabled when no pushes can be accepted | Michael Kaufmann | |
This has been implemented with commit 9ad034e. | |||
2017-01-19 | docs: non-blocking SSL handshake is now supported with NSS | Kamil Dudka | |
Implemented since curl-7_36_0-130-g8868a22 Reported-by: Fahim Chandurwala | |||
2017-01-18 | usercertinmem.c: improve the short description | Daniel Stenberg | |
2017-01-17 | TODO: share OpenSSL contexts | Daniel Stenberg | |
By supporting this, subsequent connects would load a lot less data from disk. Closes #1110 | |||
2017-01-16 | bump: next release will be 7.53.0 | Daniel Stenberg | |
2017-01-14 | docs: improved language in README.md HISTORY.md CONTRIBUTE.md | railsnewbie257 | |
Closes #1211 | |||
2017-01-14 | TODO: send only part of --data | Daniel Stenberg | |
Closes #1200 | |||
2017-01-14 | TODO: implemened "--fail-fast to exit on first transfer fail" | Daniel Stenberg | |
Even though it is called --fail-early | |||
2017-01-14 | TODO: Chunked transfer multipart formpost | Daniel Stenberg | |
Closes #1139 | |||
2017-01-14 | TODO: Improve formpost API, not just add an easy argument | Daniel Stenberg | |
2017-01-13 | THANKS-filter: Jiri Malak | Daniel Stenberg | |
2017-01-13 | unix_socket: add support for abstract unix domain socket | Isaac Boukris | |
In addition to unix domain sockets, Linux also supports an abstract namespace which is independent of the filesystem. In order to support it, add new CURLOPT_ABSTRACT_UNIX_SOCKET option which uses the same storage as CURLOPT_UNIX_SOCKET_PATH internally, along with a flag to specify abstract socket. On non-supporting platforms, the abstract address will be interpreted as an empty string and fail gracefully. Also add new --abstract-unix-socket tool parameter. Signed-off-by: Isaac Boukris <iboukris@gmail.com> Reported-by: Chungtsun Li (typeless) Reviewed-by: Daniel Stenberg Reviewed-by: Peter Wu Closes #1197 Fixes #1061 | |||
2017-01-13 | write-out.d: 'time_total' is not always shown with ms precision | Daniel Stenberg | |
We have higher resolution since 7.52.0 | |||
2017-01-13 | next.d: --trace and --trace-ascii are also global | Daniel Stenberg | |
2017-01-13 | docs: Add note about libcurl copying strings to CURLOPT_* manpages | Frank Gevaerts | |
Closes #1169 | |||
2017-01-13 | CURLOPT_PREQUOTE.3: takes a struct curl_slist*, not a char* | Frank Gevaerts | |
2017-01-13 | url: --noproxy option overrides NO_PROXY environment variable | ERAMOTO Masaya | |
Under condition using http_proxy env var, noproxy list was the combination of --noproxy option and NO_PROXY env var previously. Since this commit, --noproxy option overrides NO_PROXY environment variable even if use http_proxy env var. Closes #1140 | |||
2017-01-13 | docs: FAQ MAIL-ETIQUETTE language fixes | railsnewbie257 | |
Closes #1194 | |||
2017-01-08 | examples: make the C++ examples follow our code style too | Daniel Stenberg | |
At least mostly, not counting // comments. | |||
2017-01-08 | asiohiper: improved socket handling | Aulddays | |
libcurl requires CURLMOPT_SOCKETFUNCTION to KEEP watching socket events and notify back. Modify event_cb() to continue watching events when fired. Fixes #1191 Closes #1192 Fixed-by: Mingliang Zhu | |||
2017-01-07 | ROADMAP: 2017 cleanup | Daniel Stenberg | |
Removed items already fixed, clarified a few others. | |||
2017-01-07 | docs/silent: mention --show-error in --silent description | Daniel Stenberg | |
Reported in #1190 Reported-by: Dan Jacobson | |||
2017-01-07 | docs/page-header: mention how to disable the progress meter | Daniel Stenberg | |
curl.1 is regenerated Fixes #1190 | |||
2017-01-06 | wolfssl: support setting cipher list | Dan Fandrich | |
2017-01-06 | CIPHERS.md: document GSKit ciphers | Patrick Monnerat | |
2017-01-05 | TheArtOfHttpScripting: grammar | peterpih | |
2017-01-02 | docs/libcurl: TCP_KEEPALIVE start and interval default to 60 | Jay Satiro | |
Since the TCP keep-alive options were added in 705f0f7 the start and interval default values have been 60, but that wasn't documented. Bug: https://curl.haxx.se/mail/lib-2017-01/0000.html Reported-by: Praveen Pvs | |||
2016-12-29 | page-footer: error 36 is protocol agnostic! | Daniel Stenberg | |
2016-12-28 | tool_operate: Fix --remote-time incorrect times on Windows | Jay Satiro | |
- Use Windows API SetFileTime to set the file time instead of utime. Avoid utime on Windows if possible because it may apply a daylight saving time offset to our UTC file time. Bug: https://curl.haxx.se/mail/archive-2016-11/0033.html Reported-by: Tim Closes https://github.com/curl/curl/pull/1121 | |||
2016-12-28 | curl_formadd.3: CURLFORM_CONTENTSLENGTH not needed when chunked | Daniel Stenberg | |
Mentioned in #1013 | |||
2016-12-25 | docs/ciphers: link to our own new page about ciphers | Daniel Stenberg | |
... as the former ones always go stale! | |||
2016-12-25 | cmdline-opts/page-footer: add three more exit codes | Daniel Stenberg | |
... and regenerated curl.1 | |||
2016-12-20 | THANKS: 13 new contributors from 7.52.0 | Daniel Stenberg | |
2016-12-19 | cmdline-opts/tlsv1.d: rephrased | Daniel Stenberg | |
2016-12-18 | CIPHERS.md: backtick the names to show underscores fine | Daniel Stenberg | |