From 4fa5bd9d5c130a81f8f53ce3a7365648658217bd Mon Sep 17 00:00:00 2001 From: gd Date: Tue, 25 Oct 2022 20:18:25 +0300 Subject: [PATCH] doc/plugins.rst: changed 'More information' links to unnamed to suppress warning: Duplicate explicit target name --- doc/plugins.rst | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/doc/plugins.rst b/doc/plugins.rst index f1f15647c..cb110842a 100644 --- a/doc/plugins.rst +++ b/doc/plugins.rst @@ -236,41 +236,41 @@ will be in effect. - Configures proxy authentication. - * - **verify_peer yes|no** - - Verify the peer's SSL certificate? `More information `_. + - Verify the peer's SSL certificate? `More information `__. - yes * - **verify_host yes|no** - - Verify the certificate's name against host? `More information `_. + - Verify the certificate's name against host? `More information `__. - yes * - **cacert** - - Set path to Certificate Authority (CA) bundle `More information `_. + - Set path to Certificate Authority (CA) bundle `More information `__. - * - **connect_timeout** [#since_0_24]_ - Set the the connect phase timeout in seconds. "0" is `libcurl`'s default built-in connection timeout - 300 seconds. - `More information `_. + `More information `__. - 10 * - **verbose yes|no** [#since_0_24]_ - Set the onoff parameter to 1 to make the library display a lot of verbose information. - `More information `_. + `More information `__. - no * - **low_speed_limit** [#since_0_24]_ - The average transfer speed in bytes per second that the transfer should be below during **low_speed_time** seconds for libcurl to consider it to be too slow and abort. - `More information `_. + `More information `__. - 0 (disabled) * - **low_speed_time** [#since_0_24]_ - The time in number seconds that the transfer speed should be below the **low_speed_limit** for the libcurl to consider it too slow and abort. - `More information `_. + `More information `__. - 0 (disabled) * - **tcp_keepalive yes|no** [#since_0_24]_ - If set to yes, TCP keepalive probes will be sent. The delay and frequency of these probes can be controlled by the **tcp_keepidle** and **tcp_keepintvl** options, provided the operating system supports them. - `More information `_. + `More information `__. - no (disabled) * - **tcp_keepidle** [#since_0_24]_ - Sets the delay, in seconds, that the operating system will wait while the connection is idle before sending keepalive probes. Not all operating systems support this option. - `More information `_. + `More information `__. - 60 * - **tcp_keepintvl** [#since_0_24]_ - Sets the interval, in seconds, that the operating system will wait between sending keepalive probes. Not all operating systems support this option. - `More information `_. + `More information `__. - 60 Note: the ``low_speed`` and ``tcp_keep`` options may help solve network interruptions and connections dropped by server. Please refer to this curl issue for discussion: https://github.com/curl/curl/issues/8345