Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-12-18 | RELEASE-NOTES: synced with 4517158abfeba | Daniel Stenberg | |
2016-12-18 | CIPHERS.md: backtick the names to show underscores fine | Daniel Stenberg | |
2016-12-18 | form-string.d: fix format mistake | Daniel Stenberg | |
and regenerated curl.1 Reported-by: Gisle Vanem | |||
2016-12-18 | openssl: simplify expression in Curl_ossl_version | Michael Kaufmann | |
2016-12-18 | curl_easy_recv: Improve documentation and example program | Michael Kaufmann | |
Follow-up to 82245ea: Fix the example program sendrecv.c (handle CURLE_AGAIN, handle incomplete send). Improve the documentation for curl_easy_recv() and curl_easy_send(). Reviewed-by: Frank Meier Assisted-by: Jay Satiro See https://github.com/curl/curl/pull/1134 | |||
2016-12-18 | Curl_getconnectinfo: avoid checking if the connection is closed | Isaac Boukris | |
It doesn't benefit us much as the connection could get closed at any time, and also by checking we lose the ability to determine if the socket was closed by reading zero bytes. Reported-by: Michael Kaufmann Closes https://github.com/curl/curl/pull/1134 | |||
2016-12-18 | CIPHERS.md: attempt to document TLS cipher names | Daniel Stenberg | |
As the official docs seems really hard to keep track of and link to over time | |||
2016-12-18 | curl.1: generated after 6cce4dbf830 | Daniel Stenberg | |
2016-12-18 | cmdline-opts/post30X.d: fix the RFC references | Daniel Stenberg | |
2016-12-17 | curl.1: regenerated | Daniel Stenberg | |
Fixed trailing whitespace and numerous formatting glitches | |||
2016-12-17 | cmdline-opts: formatting fixes | Daniel Stenberg | |
2016-12-17 | curl_easy_setopt.3: removed CURLOPT_SOCKS_PROXYTYPE | Daniel Stenberg | |
2016-12-17 | tool_getparam.c: make comments use the up-to-date option names | Daniel Stenberg | |
2016-12-17 | manpage-scan.pl: allow deprecated options to get removed from curl.1 | Daniel Stenberg | |
--krb4, --ftp-ssl and --ftp-ssl-reqd no longer need to be documented in the man page | |||
2016-12-17 | cmdline-opts/gen.pl: trim off trailing spaces | Daniel Stenberg | |
2016-12-17 | cmdline-opts/proxy-tlsuser.d: remove trailing .d | Daniel Stenberg | |
2016-12-17 | curl_easy_setopt.3: CURLOPT_PRE_PROXY instead of CURLOPT_SOCKS_PROXY | Daniel Stenberg | |
2016-12-17 | symbols: removed two, added one | Daniel Stenberg | |
2016-12-17 | cmdline-opts: include the man page split up files in the dist | Daniel Stenberg | |
2016-12-16 | curl.1: generated with gen.pl | Daniel Stenberg | |
This is the first time we replace the manually edited curt.1 with the generated one created by gen.pl and the individual option documentation pages. Do not edit this file, edit the individual pages and regenerate this output. This file will be generated by the build system soon and then removed from git. | |||
2016-12-16 | cmdline-opts: added some missing info | Daniel Stenberg | |
2016-12-16 | CURLINFO_SSL_VERIFYRESULT.3: language | Daniel Stenberg | |
2016-12-16 | HTTPS-PROXY docs: update/polish | Daniel Stenberg | |
2016-12-16 | cmdline-opts/page-header: mention it is generated | Daniel Stenberg | |
... to avoid people from trying to edit the pending curl.1 version that gets generated by gen.pl | |||
2016-12-16 | preproxy: renamed what was added as SOCKS_PROXY | Daniel Stenberg | |
CURLOPT_SOCKS_PROXY -> CURLOPT_PRE_PROXY Added the corresponding --preroxy command line option. Sets a SOCKS proxy to connect to _before_ connecting to a HTTP(S) proxy. | |||
2016-12-16 | curl: normal socks proxies still use CURLOPT_PROXY | Daniel Stenberg | |
... the newly introduced CURLOPT_SOCKS_PROXY is special and should be asked for specially. (Needs new code.) Unified proxy type to a single variable in the config struct. | |||
2016-12-16 | CURLOPT_SOCKS_PROXYTYPE: removed | Daniel Stenberg | |
This was added as part of the SOCKS+HTTPS proxy merge but there's no need to support this as we prefer to have the protocol specified as a prefix instead. | |||
2016-12-15 | curl_multi_socket.3: fix typo | Daniel Stenberg | |
2016-12-14 | checksrc: warn for assignments within if() expressions | Daniel Stenberg | |
... they're already frowned upon in our source code style guide, this now enforces the rule harder. | |||
2016-12-13 | checksrc: stricter no-space-before-paren enforcement | Daniel Stenberg | |
In order to make the code style more uniform everywhere | |||
2016-12-11 | ISSUE_TEMPLATE: try mentioning known bugs/todo in new issue template | Daniel Stenberg | |
2016-12-08 | RELEASE-NOTES: synced with 71a55534fa6 | Daniel Stenberg | |
2016-12-07 | openssl: don't use OpenSSL's ERR_PACK. | Adam Langley | |
ERR_PACK is an internal detail of OpenSSL. Also, when using it, a function name must be specified which is overly specific: the test will break whenever OpenSSL internally change things so that a different function creates the error. Closes #1157 | |||
2016-12-05 | test2032: Mark test as flaky | Dan Fandrich | |
2016-12-03 | libcurl-multi.3: typo | Jeremy Pearson | |
Closes https://github.com/curl/curl/pull/1153 | |||
2016-12-02 | test1281: added http as a required feature | Dan Fandrich | |
2016-12-02 | curl: support zero-length argument strings in config files | Daniel Stenberg | |
... like 'user-agent = ""' Adjusted test 71 to verify. | |||
2016-12-01 | http_proxy: simplify CONNECT response reading | Daniel Stenberg | |
Since it now reads responses one byte a time, a loop could be removed and it is no longer limited to get the whole response within 16K, it is now instead only limited to 16K maximum header line lengths. | |||
2016-12-01 | tests: fix CONNECT test cases to be more strict | Daniel Stenberg | |
... as they broke with the cleaned up CONNECT handling | |||
2016-12-01 | CONNECT: read responses one byte at a time | Daniel Stenberg | |
... so that it doesn't read data that is actually coming from the remote. 2xx responses have no body from the proxy, that data is from the peer. Fixes #1132 | |||
2016-12-01 | CONNECT: reject TE or CL in 2xx responses | Daniel Stenberg | |
A server MUST NOT send any Transfer-Encoding or Content-Length header fields in a 2xx (Successful) response to CONNECT. (RFC 7231 section 4.3.6) Also fixes the three test cases that did this. | |||
2016-12-01 | URL parser: reject non-numerical port numbers | Daniel Stenberg | |
Test 1281 added to verify | |||
2016-11-30 | runtests: made Servers: output be more consistent by removing OFF | Dan Fandrich | |
2016-11-30 | cyassl: fixed typo introduced in 4f8b1774 | Dan Fandrich | |
2016-11-30 | CURLOPT_CONNECT_TO: Skip non-matching "connect-to" entries properly | Michael Kaufmann | |
If a port number in a "connect-to" entry does not match, skip this entry instead of connecting to port 0. If a port number in a "connect-to" entry matches, use this entry and look no further. Reported-by: Jay Satiro Assisted-by: Jay Satiro, Daniel Stenberg Closes #1148 | |||
2016-11-29 | BUGS: describe bug handling process | Daniel Stenberg | |
2016-11-28 | RELEASE-NOTES: synced with 19613fb3 | Daniel Stenberg | |
2016-11-28 | http2: check nghttp2_session_set_local_window_size exists | Jay Satiro | |
The function only exists since nghttp2 1.12.0. Bug: https://github.com/curl/curl/commit/a4d8888#commitcomment-19985676 Reported-by: Michael Kaufmann | |||
2016-11-28 | http2: Fix crashes when parent stream gets aborted | Anders Bakken | |
Closes #1125 | |||
2016-11-28 | cmdline-docs: more options converted and fixed | Daniel Stenberg | |
Now all options are in the new system. |