Skip to content
Snippets Groups Projects
Commit 26ec93dd authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

opts: fix option references missing (section)

parent cd8d2362
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
.\" * | (__| |_| | _ <| |___ .\" * | (__| |_| | _ <| |___
.\" * \___|\___/|_| \_\_____| .\" * \___|\___/|_| \_\_____|
.\" * .\" *
.\" * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al. .\" * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
.\" * .\" *
.\" * This software is licensed as described in the file COPYING, which .\" * This software is licensed as described in the file COPYING, which
.\" * you should have received as part of this distribution. The terms .\" * you should have received as part of this distribution. The terms
...@@ -44,7 +44,7 @@ get closed unnecessarily. ...@@ -44,7 +44,7 @@ get closed unnecessarily.
If you add this easy handle to a multi handle, this setting is not If you add this easy handle to a multi handle, this setting is not
acknowledged, and you must instead use \fIcurl_multi_setopt(3)\fP and the acknowledged, and you must instead use \fIcurl_multi_setopt(3)\fP and the
\fICURLMOPT_MAXCONNECTS\fP option. \fICURLMOPT_MAXCONNECTS(3)\fP option.
.SH DEFAULT .SH DEFAULT
5 5
.SH PROTOCOLS .SH PROTOCOLS
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
.\" * | (__| |_| | _ <| |___ .\" * | (__| |_| | _ <| |___
.\" * \___|\___/|_| \_\_____| .\" * \___|\___/|_| \_\_____|
.\" * .\" *
.\" * Copyright (C) 1998 - 2015, Daniel Stenberg, <daniel@haxx.se>, et al. .\" * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
.\" * .\" *
.\" * This software is licensed as described in the file COPYING, which .\" * This software is licensed as described in the file COPYING, which
.\" * you should have received as part of this distribution. The terms .\" * you should have received as part of this distribution. The terms
...@@ -36,10 +36,10 @@ libcurl will check for existing connections to re-use and pipeline on. If no ...@@ -36,10 +36,10 @@ libcurl will check for existing connections to re-use and pipeline on. If no
such connection exists it will immediately continue and create a fresh new such connection exists it will immediately continue and create a fresh new
connection to use. connection to use.
By setting this option to 1 - and having \fICURLMOPT_PIPELINE\fP enabled for By setting this option to 1 - and having \fICURLMOPT_PIPELINE(3)\fP enabled
the multi handle this transfer is associated with - libcurl will instead wait for the multi handle this transfer is associated with - libcurl will instead
for the connection to reveal if it is possible to pipeline/multiplex on before wait for the connection to reveal if it is possible to pipeline/multiplex on
it continues. This enables libcurl to much better keep the number of before it continues. This enables libcurl to much better keep the number of
connections to a minimum when using pipelining or multiplexing protocols. connections to a minimum when using pipelining or multiplexing protocols.
The effect thus becomes that with this option set, libcurl prefers to wait and The effect thus becomes that with this option set, libcurl prefers to wait and
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
.\" * | (__| |_| | _ <| |___ .\" * | (__| |_| | _ <| |___
.\" * \___|\___/|_| \_\_____| .\" * \___|\___/|_| \_\_____|
.\" * .\" *
.\" * Copyright (C) 1998 - 2015, Daniel Stenberg, <daniel@haxx.se>, et al. .\" * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
.\" * .\" *
.\" * This software is licensed as described in the file COPYING, which .\" * This software is licensed as described in the file COPYING, which
.\" * you should have received as part of this distribution. The terms .\" * you should have received as part of this distribution. The terms
...@@ -36,8 +36,8 @@ HTTP transfers also support several intervals, separated with commas as in ...@@ -36,8 +36,8 @@ HTTP transfers also support several intervals, separated with commas as in
\fI"X-Y,N-M"\fP. Using this kind of multiple intervals will cause the HTTP \fI"X-Y,N-M"\fP. Using this kind of multiple intervals will cause the HTTP
server to send the response document in pieces (using standard MIME separation server to send the response document in pieces (using standard MIME separation
techniques). Unfortunately, the HTTP standard (RFC 7233 section 3.1) allows techniques). Unfortunately, the HTTP standard (RFC 7233 section 3.1) allows
servers to ignore range requests so even when you set \fICURLOPT_RANGE\fP for servers to ignore range requests so even when you set \fICURLOPT_RANGE(3)\fP
a request, you may end up getting the full response sent back. for a request, you may end up getting the full response sent back.
For RTSP, the formatting of a range should follow RFC2326 Section 12.29. For For RTSP, the formatting of a range should follow RFC2326 Section 12.29. For
RTSP, byte ranges are \fBnot\fP permitted. Instead, ranges should be given in RTSP, byte ranges are \fBnot\fP permitted. Instead, ranges should be given in
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
.\" * | (__| |_| | _ <| |___ .\" * | (__| |_| | _ <| |___
.\" * \___|\___/|_| \_\_____| .\" * \___|\___/|_| \_\_____|
.\" * .\" *
.\" * Copyright (C) 1998 - 2015, Daniel Stenberg, <daniel@haxx.se>, et al. .\" * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
.\" * .\" *
.\" * This software is licensed as described in the file COPYING, which .\" * This software is licensed as described in the file COPYING, which
.\" * you should have received as part of this distribution. The terms .\" * you should have received as part of this distribution. The terms
...@@ -56,8 +56,8 @@ if(curl) { ...@@ -56,8 +56,8 @@ if(curl) {
} }
.fi .fi
.SH AVAILABILITY .SH AVAILABILITY
This option was once known by the older name \fICURLOPT_INFILE\fP, the name This option was once known by the older name \fICURLOPT_INFILE(3)\fP, the name
\fICURLOPT_READDATA\fP was introduced in 7.9.7. \fICURLOPT_READDATA(3)\fP was introduced in 7.9.7.
.SH RETURN VALUE .SH RETURN VALUE
This will return CURLE_OK. This will return CURLE_OK.
.SH "SEE ALSO" .SH "SEE ALSO"
......
...@@ -45,7 +45,8 @@ ADDRESS can of course be either IPv4 or IPv6 style addressing. ...@@ -45,7 +45,8 @@ ADDRESS can of course be either IPv4 or IPv6 style addressing.
This option effectively pre-populates the DNS cache with entries for the This option effectively pre-populates the DNS cache with entries for the
host+port pair so redirects and everything that operations against the host+port pair so redirects and everything that operations against the
HOST+PORT will instead use your provided ADDRESS. Addresses set with HOST+PORT will instead use your provided ADDRESS. Addresses set with
\fICURLOPT_RESOLVE\fP will not time-out from the DNS cache like ordinary entries. \fICURLOPT_RESOLVE(3)\fP will not time-out from the DNS cache like ordinary
entries.
Remove names from the DNS cache again, to stop providing these fake resolves, Remove names from the DNS cache again, to stop providing these fake resolves,
by including a string in the linked list that uses the format by including a string in the linked list that uses the format
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
.\" * | (__| |_| | _ <| |___ .\" * | (__| |_| | _ <| |___
.\" * \___|\___/|_| \_\_____| .\" * \___|\___/|_| \_\_____|
.\" * .\" *
.\" * Copyright (C) 1998 - 2015, Daniel Stenberg, <daniel@haxx.se>, et al. .\" * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
.\" * .\" *
.\" * This software is licensed as described in the file COPYING, which .\" * This software is licensed as described in the file COPYING, which
.\" * you should have received as part of this distribution. The terms .\" * you should have received as part of this distribution. The terms
...@@ -31,7 +31,7 @@ CURLcode curl_easy_setopt(CURL *handle, CURLOPT_SSLENGINE_DEFAULT, long val); ...@@ -31,7 +31,7 @@ CURLcode curl_easy_setopt(CURL *handle, CURLOPT_SSLENGINE_DEFAULT, long val);
Pass a long set to 1 to make the already specified crypto engine the default Pass a long set to 1 to make the already specified crypto engine the default
for (asymmetric) crypto operations. for (asymmetric) crypto operations.
This option has no effect unless set after \fICURLOPT_SSLENGINE\fP. This option has no effect unless set after \fICURLOPT_SSLENGINE(3)\fP.
.SH DEFAULT .SH DEFAULT
None None
.SH PROTOCOLS .SH PROTOCOLS
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment