mirror of
https://github.com/moparisthebest/curl
synced 2024-11-11 20:15:03 -05:00
opts: fix option references missing (section)
This commit is contained in:
parent
cd8d236245
commit
26ec93dd6a
@ -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
|
||||
.\" * you should have received as part of this distribution. The terms
|
||||
@ -44,7 +44,7 @@ get closed unnecessarily.
|
||||
|
||||
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
|
||||
\fICURLMOPT_MAXCONNECTS\fP option.
|
||||
\fICURLMOPT_MAXCONNECTS(3)\fP option.
|
||||
.SH DEFAULT
|
||||
5
|
||||
.SH PROTOCOLS
|
||||
|
@ -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
|
||||
.\" * 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
|
||||
such connection exists it will immediately continue and create a fresh new
|
||||
connection to use.
|
||||
|
||||
By setting this option to 1 - and having \fICURLMOPT_PIPELINE\fP enabled for
|
||||
the multi handle this transfer is associated with - libcurl will instead wait
|
||||
for the connection to reveal if it is possible to pipeline/multiplex on before
|
||||
it continues. This enables libcurl to much better keep the number of
|
||||
By setting this option to 1 - and having \fICURLMOPT_PIPELINE(3)\fP enabled
|
||||
for the multi handle this transfer is associated with - libcurl will instead
|
||||
wait for the connection to reveal if it is possible to pipeline/multiplex on
|
||||
before it continues. This enables libcurl to much better keep the number of
|
||||
connections to a minimum when using pipelining or multiplexing protocols.
|
||||
|
||||
The effect thus becomes that with this option set, libcurl prefers to wait and
|
||||
|
@ -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
|
||||
.\" * 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
|
||||
\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
|
||||
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
|
||||
a request, you may end up getting the full response sent back.
|
||||
servers to ignore range requests so even when you set \fICURLOPT_RANGE(3)\fP
|
||||
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
|
||||
RTSP, byte ranges are \fBnot\fP permitted. Instead, ranges should be given in
|
||||
|
@ -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
|
||||
.\" * you should have received as part of this distribution. The terms
|
||||
@ -56,8 +56,8 @@ if(curl) {
|
||||
}
|
||||
.fi
|
||||
.SH AVAILABILITY
|
||||
This option was once known by the older name \fICURLOPT_INFILE\fP, the name
|
||||
\fICURLOPT_READDATA\fP was introduced in 7.9.7.
|
||||
This option was once known by the older name \fICURLOPT_INFILE(3)\fP, the name
|
||||
\fICURLOPT_READDATA(3)\fP was introduced in 7.9.7.
|
||||
.SH RETURN VALUE
|
||||
This will return CURLE_OK.
|
||||
.SH "SEE ALSO"
|
||||
|
@ -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
|
||||
host+port pair so redirects and everything that operations against the
|
||||
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,
|
||||
by including a string in the linked list that uses the format
|
||||
|
@ -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
|
||||
.\" * 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);
|
||||
Pass a long set to 1 to make the already specified crypto engine the default
|
||||
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
|
||||
None
|
||||
.SH PROTOCOLS
|
||||
|
Loading…
Reference in New Issue
Block a user