]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
docs: update curl man page references
authorDaniel Stenberg <daniel@haxx.se>
Wed, 27 Sep 2023 09:36:03 +0000 (11:36 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 28 Sep 2023 20:57:24 +0000 (22:57 +0200)
Detected by the manpage-syntax update

Closes #11963

29 files changed:
docs/libcurl/curl_easy_getinfo.3
docs/libcurl/curl_easy_perform.3
docs/libcurl/curl_mime_encoder.3
docs/libcurl/curl_mime_subparts.3
docs/libcurl/curl_multi_strerror.3
docs/libcurl/curl_multi_timeout.3
docs/libcurl/curl_share_cleanup.3
docs/libcurl/curl_share_setopt.3
docs/libcurl/curl_url_strerror.3
docs/libcurl/curl_version_info.3
docs/libcurl/libcurl-share.3
docs/libcurl/libcurl-tutorial.3
docs/libcurl/opts/CURLINFO_LASTSOCKET.3
docs/libcurl/opts/CURLINFO_REDIRECT_TIME_T.3
docs/libcurl/opts/CURLINFO_TLS_SSL_PTR.3
docs/libcurl/opts/CURLOPT_CA_CACHE_TIMEOUT.3
docs/libcurl/opts/CURLOPT_CONV_FROM_NETWORK_FUNCTION.3
docs/libcurl/opts/CURLOPT_CONV_FROM_UTF8_FUNCTION.3
docs/libcurl/opts/CURLOPT_CONV_TO_NETWORK_FUNCTION.3
docs/libcurl/opts/CURLOPT_DISALLOW_USERNAME_IN_URL.3
docs/libcurl/opts/CURLOPT_POSTFIELDSIZE.3
docs/libcurl/opts/CURLOPT_POSTFIELDSIZE_LARGE.3
docs/libcurl/opts/CURLOPT_PRE_PROXY.3
docs/libcurl/opts/CURLOPT_PROXY_SSL_VERIFYHOST.3
docs/libcurl/opts/CURLOPT_SERVER_RESPONSE_TIMEOUT.3
docs/libcurl/opts/CURLOPT_SSL_VERIFYHOST.3
docs/libcurl/opts/CURLOPT_WRITEDATA.3
docs/libcurl/opts/CURLSHOPT_LOCKFUNC.3
docs/libcurl/opts/CURLSHOPT_UNLOCKFUNC.3

index 21f7e2b5f99e2667777531805ab4071085d1ea5e..b0d8ae89dcee05d093b121f7bd599512f56cb61d 100644 (file)
@@ -254,8 +254,8 @@ See \fICURLINFO_CONN_ID(3)\fP
 The ID of the transfer. (Added in 8.2.0)
 See \fICURLINFO_XFER_ID(3)\fP
 .SH TIMES
+An overview of the six time values available from \fIcurl_easy_getinfo(3)\fP
 .nf
-An overview of the six time values available from curl_easy_getinfo()
 
 curl_easy_perform()
     |
@@ -268,34 +268,34 @@ curl_easy_perform()
     |--|--|--|--|--|--REDIRECT
 .fi
 .IP NAMELOOKUP
-\fICURLINFO_NAMELOOKUP_TIME\fP and \fICURLINFO_NAMELOOKUP_TIME_T\fP.
+\fICURLINFO_NAMELOOKUP_TIME(3)\fP and \fICURLINFO_NAMELOOKUP_TIME_T(3)\fP.
 The time it took from the start until the name resolving was completed.
 .IP CONNECT
-\fICURLINFO_CONNECT_TIME\fP and \fICURLINFO_CONNECT_TIME_T\fP.
-The time it took from the start until the connect
-to the remote host (or proxy) was completed.
+\fICURLINFO_CONNECT_TIME(3)\fP and \fICURLINFO_CONNECT_TIME_T(3)\fP.  The time
+it took from the start until the connect to the remote host (or proxy) was
+completed.
 .IP APPCONNECT
-\fICURLINFO_APPCONNECT_TIME\fP and \fICURLINFO_APPCONNECT_TIME_T\fP.
-The time it took from the start until the SSL
-connect/handshake with the remote host was completed. (Added in 7.19.0)
-The latter is the integer version (measuring microseconds).  (Added in 7.60.0)
+\fICURLINFO_APPCONNECT_TIME(3)\fP and \fICURLINFO_APPCONNECT_TIME_T(3)\fP.
+The time it took from the start until the SSL connect/handshake with the
+remote host was completed. (Added in 7.19.0) The latter is the integer version
+(measuring microseconds). (Added in 7.60.0)
 .IP PRETRANSFER
-\fICURLINFO_PRETRANSFER_TIME\fP and \fICURLINFO_PRETRANSFER_TIME_T\fP.
-The time it took from the start until the
-file transfer is just about to begin. This includes all pre-transfer commands
-and negotiations that are specific to the particular protocol(s) involved.
+\fICURLINFO_PRETRANSFER_TIME(3)\fP and \fICURLINFO_PRETRANSFER_TIME_T(3)\fP.
+The time it took from the start until the file transfer is just about to
+begin. This includes all pre-transfer commands and negotiations that are
+specific to the particular protocol(s) involved.
 .IP STARTTRANSFER
-\fICURLINFO_STARTTRANSFER_TIME\fP and \fICURLINFO_STARTTRANSFER_TIME_T\fP.
-The time it took from the start until the
-first byte is received by libcurl.
+\fICURLINFO_STARTTRANSFER_TIME(3)\fP and
+\fICURLINFO_STARTTRANSFER_TIME_T(3)\fP. The time it took from the start until
+the first byte is received by libcurl.
 .IP TOTAL
-\fICURLINFO_TOTAL_TIME\fP and \fICURLINFO_TOTAL_TIME_T\fP.
-Total time of the previous request.
+\fICURLINFO_TOTAL_TIME(3)\fP and \fICURLINFO_TOTAL_TIME_T(3)\fP. Total time
+of the previous request.
 .IP REDIRECT
-\fICURLINFO_REDIRECT_TIME\fP and \fICURLINFO_REDIRECT_TIME_T\fP.
-The time it took for all redirection steps
-include name lookup, connect, pretransfer and transfer before final
-transaction was started. So, this is zero if no redirection took place.
+\fICURLINFO_REDIRECT_TIME(3)\fP and \fICURLINFO_REDIRECT_TIME_T(3)\fP. The
+time it took for all redirection steps include name lookup, connect,
+pretransfer and transfer before final transaction was started. So, this is
+zero if no redirection took place.
 .SH EXAMPLE
 .nf
   curl = curl_easy_init();
index 17badece9d6c8a751cd8ccae3ad18128b124abeb..7852d764f99161c1844b560a5f4d217c6272bb7e 100644 (file)
@@ -46,7 +46,7 @@ even encouraged to do so. libcurl attempts to reuse existing connections for
 the following transfers, thus making the operations faster, less CPU intense
 and using less network resources. You probably want to use
 \fIcurl_easy_setopt(3)\fP between the invokes to set options for the following
-curl_easy_perform call.
+\fIcurl_easy_perform(3)\fP call.
 
 You must never call this function simultaneously from two places using the
 same \fBeasy_handle\fP. Let the function return first before invoking it
index aa148e041851c6590c110449bdb19aa21aca555b..7e61d93d2aad911a173afc28b21bb8c7cca975f0 100644 (file)
@@ -67,11 +67,11 @@ not be used with other types of data.
 
 If the original data is already encoded in such a scheme, a custom
 \fIContent-Transfer-Encoding\fP header should be added with
-\fIcurl_mime_headers\fP() instead of setting a part encoder.
+\fIcurl_mime_headers(3)\fP instead of setting a part encoder.
 
-Encoding should not be applied to multiparts, thus the use of this
-function on a part with content set with \fIcurl_mime_subparts\fP() is
-strongly discouraged.
+Encoding should not be applied to multiparts, thus the use of this function on
+a part with content set with \fIcurl_mime_subparts(3)\fP is strongly
+discouraged.
 .SH EXAMPLE
 .nf
  curl_mime *mime;
index ee662ab61d2e7949cb3847972e019a5d08fe9549..45bc62c86b8f90c13de5b67fecc003da38ddf9b1 100644 (file)
@@ -37,7 +37,7 @@ structure.
 \fIpart\fP is a handle to the multipart part.
 
 \fIsubparts\fP is a mime structure handle holding the sub-parts. After
-\fIcurl_mime_subparts\fP succeeds, the mime structure handle belongs to the
+\fIcurl_mime_subparts(3)\fP succeeds, the mime structure handle belongs to the
 multipart part and must not be freed explicitly. It may however be updated by
 subsequent calls to mime API functions.
 
index fb4165940aadeecd198774f96a45c6c3b6ecdf77..7dd7e88920b1cba7d53ddcba726963ae9bf0c192 100644 (file)
@@ -29,8 +29,8 @@ curl_multi_strerror - return string describing error code
 .B #include <curl/curl.h>
 .BI "const char *curl_multi_strerror(CURLMcode " errornum ");"
 .SH DESCRIPTION
-The curl_multi_strerror() function returns a string describing the
-\fICURLMcode\fP error code passed in the argument \fIerrornum\fP.
+This function returns a string describing the \fICURLMcode\fP error code
+passed in the argument \fIerrornum\fP.
 .SH EXAMPLE
 .nf
 int still_running;
index 605b98ec61f4065c804de7832c7c5239c4d7dfda..23abe9491baf0327eac80776709c2bf558c6de8c 100644 (file)
@@ -51,7 +51,7 @@ and desired behavior.
 
 Note: if libcurl returns a -1 timeout here, it just means that libcurl
 currently has no stored timeout value. You must not wait too long (more than a
-few seconds perhaps) before you call curl_multi_perform() again.
+few seconds perhaps) before you call \fIcurl_multi_perform(3)\fP again.
 .SH EXAMPLE
 .nf
 struct timeval timeout;
index fcfb28ba84e9341d89e25078649328a6c87febd9..93f098e2aea10dbd61995347ac631a0092635ea3 100644 (file)
@@ -48,7 +48,7 @@ immediately with no action.
 Added in 7.10
 .SH RETURN VALUE
 CURLSHE_OK (zero) means that the option was set properly, non-zero means an
-error occurred as \fI<curl/curl.h>\fP defines. See the \fIlibcurl-errors.3\fP
+error occurred as \fI<curl/curl.h>\fP defines. See the \fIlibcurl-errors(3)\fP
 man page for the full list with descriptions. If an error occurs, then the
 share object is not deleted.
 .SH "SEE ALSO"
index 4e6f18aa18fdff05805066879312ad5b651771b7..d894291ba225f2544a67054c5cc706946ed6d004 100644 (file)
@@ -55,7 +55,7 @@ See \fICURLSHOPT_USERDATA(3)\fP.
 Added in 7.10
 .SH RETURN VALUE
 CURLSHE_OK (zero) means that the option was set properly, non-zero means an
-error occurred as \fI<curl/curl.h>\fP defines. See the \fIlibcurl-errors.3\fP
+error occurred as \fI<curl/curl.h>\fP defines. See the \fIlibcurl-errors(3)\fP
 man page for the full list with descriptions.
 .SH "SEE ALSO"
 .BR curl_share_cleanup (3),
index 2dd9ff77d5107fffda36007a84f040f62c0cd680..b3fd40379a2aff4cfc41e6ce25df2c67fb227273 100644 (file)
@@ -29,8 +29,8 @@ curl_url_strerror - return string describing error code
 .B #include <curl/curl.h>
 .BI "const char *curl_url_strerror(CURLUcode " errornum ");"
 .SH DESCRIPTION
-The curl_url_strerror() function returns a string describing the CURLUcode
-error code passed in the argument \fIerrornum\fP.
+This function returns a string describing the CURLUcode error code passed in
+the argument \fIerrornum\fP.
 .SH EXAMPLE
 .nf
   CURLUcode rc;
index a0fb1932fdc6b056353fca72b0cbc522b6b2a8eb..ac07abee3ec9f2ae5a66967025866996d5188915 100644 (file)
@@ -46,7 +46,7 @@ or not, instead of using compile-time checks, as dynamic/DLL libraries can be
 changed independent of applications.
 
 This function can alter the returned static data as long as
-\fIcurl_global_init\fP has not been called. It is therefore not thread-safe
+\fIcurl_global_init(3)\fP has not been called. It is therefore not thread-safe
 before libcurl initialization occurs.
 
 The curl_version_info_data struct looks like this
index d4238c7c4094cc9c4c4bc681e2da2b5bc398f47a..7e7ee2ae6440c55cce9f30e1560b4197a3179aeb 100644 (file)
@@ -58,7 +58,7 @@ handle.
 
 To make an easy handle stop using that particular share, you set
 \fICURLOPT_SHARE(3)\fP to NULL for that easy handle. To make a handle stop
-sharing a particular data, you can \fICURLSHOPT_UNSHARE\fP it.
+sharing a particular data, you can \fICURLSHOPT_UNSHARE(3)\fP it.
 
 When you are done using the share, make sure that no easy handle is still using
 it, and call \fIcurl_share_cleanup(3)\fP on the handle.
index b9652c356db6f9ee11b365164163a13fc797999a..d312bd5deb5238797b7e506c80125db3d4507b12 100644 (file)
@@ -624,7 +624,7 @@ becomes:
  curl_mime_headers(part, headers, FALSE);
 .fi
 
-Setting the last \fIcurl_mime_headers\fP argument to TRUE would have caused
+Setting the last \fIcurl_mime_headers(3)\fP argument to TRUE would have caused
 the headers to be automatically released upon destroyed the multi-part, thus
 saving a clean-up call to \fIcurl_slist_free_all(3)\fP.
 
@@ -641,10 +641,10 @@ becomes:
  curl_mime_data_cb(part, (curl_off_t) -1, fread, fseek, NULL, stdin);
 .fi
 
-\fIcurl_mime_name\fP always copies the field name. The special file name "-"
-is not supported by \fIcurl_mime_file\fP: to read an open file, use a callback
-source using fread(). The transfer is be chunk-encoded since the data size is
-unknown.
+\fIcurl_mime_name(3)\fP always copies the field name. The special file name
+"-" is not supported by \fIcurl_mime_filename(3)\fP: to read an open file, use
+a callback source using fread(). The transfer is be chunk-encoded since the
+data size is unknown.
 
 .nf
  curl_formadd(&post, &last,
@@ -686,7 +686,7 @@ becomes:
  curl_mime_type(part, "application/zip");
 .fi
 
-\fICURLOPT_READFUNCTION\fP callback is not used: it is replace by directly
+\fICURLOPT_READFUNCTION(3)\fP callback is not used: it is replace by directly
 setting the part source data from the callback read function.
 
 .nf
@@ -705,7 +705,7 @@ becomes:
  curl_mime_filename(part, "memfile.bin");
 .fi
 
-\fIcurl_mime_data\fP always copies the initial data: data buffer is thus
+\fIcurl_mime_data(3)\fP always copies the initial data: data buffer is thus
 free for immediate reuse.
 
 .nf
@@ -722,8 +722,9 @@ becomes:
  curl_mime_filename(part, NULL);
 .fi
 
-Use of \fIcurl_mime_filedata\fP sets the remote file name as a side effect: it
-is therefore necessary to clear it for \fICURLFORM_FILECONTENT\fP emulation.
+Use of \fIcurl_mime_filedata(3)\fP sets the remote file name as a side effect:
+it is therefore necessary to clear it for \fICURLFORM_FILECONTENT\fP
+emulation.
 
 .SH "Showing Progress"
 
index 313c7d2622de47d378b5b5fd473a88740cc83057..efc13794625412f907f0f0be2ef1451c8ac99b39 100644 (file)
@@ -36,8 +36,8 @@ Deprecated since 7.45.0. Use \fICURLINFO_ACTIVESOCKET(3)\fP instead.
 
 Pass a pointer to a long to receive the last socket used by this curl
 session. If the socket is no longer valid, -1 is returned. When you finish
-working with the socket, you must call curl_easy_cleanup() as usual and let
-libcurl close the socket and cleanup other resources associated with the
+working with the socket, you must call \fIcurl_easy_cleanup(3)\fP as usual and
+let libcurl close the socket and cleanup other resources associated with the
 handle. This is typically used in combination with
 \fICURLOPT_CONNECT_ONLY(3)\fP.
 
index a827265112fa19f923662f16f07185564d96a78b..444bbae77b3c70866ff816a74799c36978c1aff3 100644 (file)
@@ -33,11 +33,11 @@ CURLcode curl_easy_getinfo(CURL *handle, CURLINFO_REDIRECT_TIME_T,
                            curl_off_t *timep);
 .fi
 .SH DESCRIPTION
-Pass a pointer to a curl_off_t to receive the total time, in microseconds,
-it took for
-all redirection steps include name lookup, connect, pretransfer and transfer
-before final transaction was started. \fICURLINFO_REDIRECT_TIME_T\fP contains
-the complete execution time for multiple redirections.
+Pass a pointer to a curl_off_t to receive the total time, in microseconds, it
+took for all redirection steps include name lookup, connect, pretransfer and
+transfer before final transaction was started.
+\fICURLINFO_REDIRECT_TIME_T(3)\fP holds the complete execution time for
+multiple redirections.
 
 See also the TIMES overview in the \fIcurl_easy_getinfo(3)\fP man page.
 .SH PROTOCOLS
index 92606c8fc3adb2a8937c41ef2f453e00e4acec31..53d084d48789b99970c01255bae9cf8bc65f83aa 100644 (file)
@@ -88,7 +88,8 @@ as well:
 
 If the \fIinternals\fP pointer is NULL then either the SSL backend is not
 supported, an SSL session has not yet been established or the connection is no
-longer associated with the easy handle (e.g. curl_easy_perform has returned).
+longer associated with the easy handle (e.g. \fIcurl_easy_perform(3)\fP has
+returned).
 .SH LIMITATIONS
 This option has some limitations that could make it unsafe when it comes to
 the manual verification of certificates.
index 80fad019ef8a2f4e5f3bec997aed62066de519ff..36d2bf74aa6adc76cae9d24eac04442340c229cf 100644 (file)
@@ -37,7 +37,7 @@ time any cached certificate store it has in memory may be kept and reused for
 new connections. Once the timeout has expired, a subsequent fetch requiring a
 certificate has to reload it.
 
-Building a certificate store from a \fICURLOPT_CAINFO\fP file is a slow
+Building a certificate store from a \fICURLOPT_CAINFO(3)\fP file is a slow
 operation so curl may cache the generated certificate store internally to speed
 up future connections.
 
index 1de5bc83d06261afc70b3a54f288cbeeae18b535..9d14df7cd81e82e53569f55fd5478ed917961b07 100644 (file)
@@ -47,7 +47,7 @@ parameter. \fICURLE_OK\fP must be returned upon successful conversion.  A
 CURLcode return value defined by curl.h, such as \fICURLE_CONV_FAILED\fP,
 should be returned if an error was encountered.
 
-\fBCURLOPT_CONV_FROM_NETWORK_FUNCTION\fP converts to host encoding from the
+\fICURLOPT_CONV_FROM_NETWORK_FUNCTION(3)\fP converts to host encoding from the
 network encoding.  It is used when commands or ASCII data are received over
 the network.
 
index eb050ae45b0833ded5b027e80b469d837d6f138a..d4ae0c54d1a9473f0abf18988588e06a88b09cb1 100644 (file)
@@ -47,7 +47,7 @@ parameter. \fICURLE_OK\fP must be returned upon successful conversion.  A
 CURLcode return value defined by curl.h, such as \fICURLE_CONV_FAILED\fP,
 should be returned if an error was encountered.
 
-\fBCURLOPT_CONV_FROM_UTF8_FUNCTION\fP converts to host encoding from UTF8
+\fICURLOPT_CONV_FROM_UTF8_FUNCTION(3)\fP converts to host encoding from UTF8
 encoding. It is required only for SSL processing.
 
 If you set a callback pointer to NULL, or do not set it at all, the built-in
index 0e75ca49c2b3b524ebfaea3efb62e5a74131db37..a334078a47843b0c650f897aafe0b7ea21673c28 100644 (file)
@@ -47,8 +47,8 @@ parameter. \fICURLE_OK\fP must be returned upon successful conversion.  A
 CURLcode return value defined by curl.h, such as \fICURLE_CONV_FAILED\fP,
 should be returned if an error was encountered.
 
-\fBCURLOPT_CONV_TO_NETWORK_FUNCTION\fP converts from host encoding to the
-network encoding.  It is used when commands or ASCII data are sent over the
+\fICURLOPT_CONV_TO_NETWORK_FUNCTION(3)\fP converts from host encoding to the
+network encoding. It is used when commands or ASCII data are sent over the
 network.
 
 If you set a callback pointer to NULL, or do not set it at all, the built-in
index 1164c65a73ee2fa5fb5c8a0b3804e8d44881a0a8..e21cbe6b1bf2cf87017d37a69735e924d3bcf9f1 100644 (file)
@@ -58,8 +58,8 @@ Added in 7.61.0
 .SH RETURN VALUE
 Returns CURLE_OK if the option is supported, and CURLE_UNKNOWN_OPTION if not.
 
-curl_easy_perform() returns CURLE_LOGIN_DENIED if this option is enabled and a
-URL containing a username is specified.
+\fIcurl_easy_perform(3)\fP returns CURLE_LOGIN_DENIED if this option is
+enabled and a URL containing a username is specified.
 .SH "SEE ALSO"
 .BR curl_url_set (3),
 .BR CURLOPT_PROTOCOLS (3),
index 20c79c8f7de1dd4a554cad6b2fb1902abe4ed596..e519dd7ac434d1ba711670e4c11f769b3952eb70 100644 (file)
@@ -36,7 +36,7 @@ If you want to post static data to the server without having libcurl do a
 strlen() to measure the data size, this option must be used. When this option
 is used you can post fully binary data, which otherwise is likely to fail. If
 this size is set to -1, libcurl uses strlen() to get the size or relies on the
-\fICURLOPT_READFUNCTION\fP (if used) to signal the end of data.
+\fICURLOPT_READFUNCTION(3)\fP (if used) to signal the end of data.
 
 If you post more than 2GB, use \fICURLOPT_POSTFIELDSIZE_LARGE(3)\fP.
 .SH DEFAULT
index 10cb42ca3a671e95d0155a5d35a7c141625ca5ec..22dabf31a87dc20df49db7b035406de150380598 100644 (file)
@@ -36,7 +36,7 @@ If you want to post static data to the server without having libcurl do a
 strlen() to measure the data size, this option must be used. When this option
 is used you can post fully binary data, which otherwise is likely to fail. If
 this size is set to -1, libcurl uses strlen() to get the size or relies on the
-\fICURLOPT_READFUNCTION\fP (if used) to signal the end of data.
+\fICURLOPT_READFUNCTION(3)\fP (if used) to signal the end of data.
 .SH DEFAULT
 -1
 .SH PROTOCOLS
index 1c152b69038607c6ca13f29f80b462ed24c3094d..6e06ab8225950ae1a41c02ee0d4b0ef206140009 100644 (file)
@@ -43,8 +43,8 @@ option \fICURLOPT_PROXYPORT(3)\fP. If not specified, libcurl defaults to using
 port 1080 for proxies.
 
 A pre proxy is a SOCKS proxy that curl connects to before it connects to the
-HTTP(S) proxy specified in the \fICURLOPT_PROXY\fP option. The pre proxy can
-only be a SOCKS proxy.
+HTTP(S) proxy specified in the \fICURLOPT_PROXY(3)\fP option. The pre proxy
+can only be a SOCKS proxy.
 
 The pre proxy string should be prefixed with [scheme]:// to specify which kind
 of socks is used. Use socks4://, socks4a://, socks5:// or socks5h:// (the last
index c4205e244cdbd70d969d06a15c89ad9a6fcc3a65..83962d7c229a063d99ec9d69550c89313c1894e8 100644 (file)
@@ -52,8 +52,8 @@ If \fIverify\fP value is set to 1:
 In 7.28.0 and earlier: treated as a debug option of some sorts, not supported
 anymore due to frequently leading to programmer mistakes.
 
-From 7.28.1 to 7.65.3: setting it to 1 made curl_easy_setopt() return an error
-and leaving the flag untouched.
+From 7.28.1 to 7.65.3: setting it to 1 made \fIcurl_easy_setopt(3)\fP return
+an error and leaving the flag untouched.
 
 From 7.66.0: treats 1 and 2 the same.
 
index 80d2ee286317b66f169f14f7f703f33595fc7275..0628b374c0d120d0471884bef7dc4da8c57b48d0 100644 (file)
@@ -41,7 +41,7 @@ recommended that if used in conjunction with \fICURLOPT_TIMEOUT(3)\fP, you set
 \fICURLOPT_SERVER_RESPONSE_TIMEOUT(3)\fP to a value smaller than
 \fICURLOPT_TIMEOUT(3)\fP.
 
-This option was formerly known as \fBCURLOPT_FTP_RESPONSE_TIMEOUT\fP.
+This option was formerly known as CURLOPT_FTP_RESPONSE_TIMEOUT.
 .SH DEFAULT
 None
 .SH PROTOCOLS
index 08f38447664011d257847881fce6dc21554e7cdb..1bff9305a864adb63e06ca680aa74c3864b963f8 100644 (file)
@@ -54,8 +54,8 @@ If \fIverify\fP value is set to 1:
 In 7.28.0 and earlier: treated as a debug option of some sorts, not supported
 anymore due to frequently leading to programmer mistakes.
 
-From 7.28.1 to 7.65.3: setting it to 1 made curl_easy_setopt() return an error
-and leaving the flag untouched.
+From 7.28.1 to 7.65.3: setting it to 1 made \fIcurl_easy_setopt(3)\fP return
+an error and leaving the flag untouched.
 
 From 7.66.0: treats 1 and 2 the same.
 
index 1bc41db8a3a2cfc1a694fdb91c46730ddd399d22..6dc0995068e7495a2e98cf97bbb499972b0dd317 100644 (file)
@@ -56,8 +56,7 @@ data in. Like in the getinmemory example:
 https://curl.se/libcurl/c/getinmemory.html
 .SH AVAILABILITY
 Available in all libcurl versions. This option was formerly known as
-\fICURLOPT_FILE\fP, the name \fICURLOPT_WRITEDATA(3)\fP was introduced in
-7.9.7.
+CURLOPT_FILE, the name \fICURLOPT_WRITEDATA(3)\fP was added in 7.9.7.
 .SH RETURN VALUE
 This returns CURLE_OK.
 .SH "SEE ALSO"
index 6cd7bf090ce7f44edd60e84dacc2b830863a6e00..8d146eb67d53f518a348d3196abc84c4a344ef5b 100644 (file)
@@ -49,7 +49,7 @@ sure that the callback uses a different lock for each kind of data.
 
 \fIaccess\fP defines what access type libcurl wants, shared or single.
 
-\fIclientp\fP is the private pointer you set with \fICURLSHOPT_USERDATA\fP.
+\fIclientp\fP is the private pointer you set with \fICURLSHOPT_USERDATA(3)\fP.
 This pointer is not used by libcurl itself.
 .SH PROTOCOLS
 All
index ebc4c78a9487d10f2b53038f9cb355cb432dbf8e..4b52ef3cb13a22212dedd64eecb83699a81f377c 100644 (file)
@@ -45,7 +45,7 @@ is released.
 The \fIdata\fP argument tells what kind of data libcurl wants to unlock. Make
 sure that the callback uses a different lock for each kind of data.
 
-\fIclientp\fP is the private pointer you set with \fICURLSHOPT_USERDATA\fP.
+\fIclientp\fP is the private pointer you set with \fICURLSHOPT_USERDATA(3)\fP.
 This pointer is not used by libcurl itself.
 .SH PROTOCOLS
 All