opts: fix broken/bad references

This commit is contained in:
Daniel Stenberg 2016-05-01 16:41:04 +02:00
parent 6940f4b52a
commit aba4727533
5 changed files with 12 additions and 12 deletions

View File

@ -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
@ -29,8 +29,8 @@ CURLOPT_CHUNK_DATA \- custom pointer to the FTP chunk callbacks
CURLcode curl_easy_setopt(CURL *handle, CURLOPT_CHUNK_DATA, void *pointer); CURLcode curl_easy_setopt(CURL *handle, CURLOPT_CHUNK_DATA, void *pointer);
.SH DESCRIPTION .SH DESCRIPTION
Pass a \fIpointer\fP that will be untouched by libcurl and passed as the ptr Pass a \fIpointer\fP that will be untouched by libcurl and passed as the ptr
argument to the \fICURL_CHUNK_BGN_FUNCTION(3)\fP and argument to the \fICURLOPT_CHUNK_BGN_FUNCTION(3)\fP and
\fICURL_CHUNK_END_FUNCTION(3)\fP. \fICURLOPT_CHUNK_END_FUNCTION(3)\fP.
.SH DEFAULT .SH DEFAULT
NULL NULL
.SH PROTOCOLS .SH PROTOCOLS

View File

@ -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
@ -31,7 +31,7 @@ CURLcode curl_easy_setopt(CURL *handle, CURLOPT_FNMATCH_DATA,
void *pointer); void *pointer);
.SH DESCRIPTION .SH DESCRIPTION
Pass a pointer that will be untouched by libcurl and passed as the ptr Pass a pointer that will be untouched by libcurl and passed as the ptr
argument to the \fICURL_FNMATCH_FUNCTION(3)\fP. argument to the \fICURLOPT_FNMATCH_FUNCTION(3)\fP.
.SH DEFAULT .SH DEFAULT
NULL NULL
.SH PROTOCOLS .SH PROTOCOLS

View File

@ -56,7 +56,7 @@ if(curl) {
} }
.fi .fi
.SH AVAILABILITY .SH AVAILABILITY
This option was once known by the older name \fICURLOPT_INFILE(3)\fP, the name This option was once known by the older name CURLOPT_INFILE, the name
\fICURLOPT_READDATA(3)\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.

View File

@ -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
@ -34,10 +34,10 @@ single session may be controlling \fIrtsp://foo/twister/audio\fP and
appropriate stream using this option. If unset, libcurl will default to appropriate stream using this option. If unset, libcurl will default to
operating on generic server options by passing '*' in the place of the RTSP operating on generic server options by passing '*' in the place of the RTSP
Stream URI. This option is distinct from \fICURLOPT_URL(3)\fP. When working Stream URI. This option is distinct from \fICURLOPT_URL(3)\fP. When working
with RTSP, the \fICURLOPT_STREAM_URI(3)\fP indicates what URL to send to the with RTSP, the \fICURLOPT_RTSP_STREAM_URI(3)\fP indicates what URL to send to
server in the request header while the \fICURLOPT_URL(3)\fP indicates where to the server in the request header while the \fICURLOPT_URL(3)\fP indicates
make the connection to. (e.g. the \fICURLOPT_URL(3)\fP for the above examples where to make the connection to. (e.g. the \fICURLOPT_URL(3)\fP for the above
might be set to \fIrtsp://foo/twister\fP examples might be set to \fIrtsp://foo/twister\fP
.SH DEFAULT .SH DEFAULT
'*' '*'
.SH PROTOCOLS .SH PROTOCOLS

View File

@ -28,7 +28,7 @@ CURLOPT_SOCKS5_GSSAPI_SERVICE \- SOCKS5 proxy authentication service name
CURLcode curl_easy_setopt(CURL *handle, CURLOPT_SOCKS5_GSSAPI_SERVICE, char *name); CURLcode curl_easy_setopt(CURL *handle, CURLOPT_SOCKS5_GSSAPI_SERVICE, char *name);
.SH DESCRIPTION .SH DESCRIPTION
Deprecated since 7.49.0. Use \CURLOPT_PROXY_SERVICE_NAME(3)\fP instead. Deprecated since 7.49.0. Use \fICURLOPT_PROXY_SERVICE_NAME(3)\fP instead.
Pass a char * as parameter to a string holding the \fIname\fP of the service. Pass a char * as parameter to a string holding the \fIname\fP of the service.
The default service name for a SOCKS5 server is "rcmd". This option allows you The default service name for a SOCKS5 server is "rcmd". This option allows you