- Dec 18, 2016
-
-
Michael Kaufmann authored
-
Michael Kaufmann authored
Follow-up to 82245eaa: 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
-
Isaac Boukris authored
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
-
Daniel Stenberg authored
As the official docs seems really hard to keep track of and link to over time
-
- Dec 17, 2016
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
Fixed trailing whitespace and numerous formatting glitches
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
--krb4, --ftp-ssl and --ftp-ssl-reqd no longer need to be documented in the man page
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
- Dec 16, 2016
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
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.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
... to avoid people from trying to edit the pending curl.1 version that gets generated by gen.pl
-
Daniel Stenberg authored
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.
-
Daniel Stenberg authored
... 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.
-
Daniel Stenberg authored
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.
-
- Dec 15, 2016
-
-
Daniel Stenberg authored
-
- Dec 14, 2016
-
-
Daniel Stenberg authored
... they're already frowned upon in our source code style guide, this now enforces the rule harder.
-
- Dec 13, 2016
-
-
Daniel Stenberg authored
In order to make the code style more uniform everywhere
-
- Dec 11, 2016
-
-
Daniel Stenberg authored
-
- Dec 08, 2016
-
-
Daniel Stenberg authored
-
- Dec 07, 2016
-
-
Adam Langley authored
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
-
- Dec 05, 2016
-
-
Dan Fandrich authored
-
- Dec 03, 2016
-
-
Jeremy Pearson authored
Closes https://github.com/curl/curl/pull/1153
-
- Dec 02, 2016
-
-
Dan Fandrich authored
-
Daniel Stenberg authored
... like 'user-agent = ""' Adjusted test 71 to verify.
-
- Dec 01, 2016
-
-
Daniel Stenberg authored
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.
-
Daniel Stenberg authored
... as they broke with the cleaned up CONNECT handling
-
Daniel Stenberg authored
... 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
-
Daniel Stenberg authored
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.
-
Daniel Stenberg authored
Test 1281 added to verify
-
- Nov 30, 2016
-
-
Dan Fandrich authored
-