aboutsummaryrefslogtreecommitdiff
path: root/docs/libcurl/opts/CURLOPT_TRAILERDATA.3
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2018-12-14 10:20:06 +0100
committerDaniel Stenberg <daniel@haxx.se>2018-12-14 10:20:06 +0100
commit04b69c744cfecd19d940353a4e25bbc09feedc77 (patch)
treeef06310c34f18e8dff187315d1a06f919df94dfb /docs/libcurl/opts/CURLOPT_TRAILERDATA.3
parentf464535bfdd9a83140d8a13c3fe3d937239d1c2a (diff)
downloadgnurl-04b69c744cfecd19d940353a4e25bbc09feedc77.tar.gz
gnurl-04b69c744cfecd19d940353a4e25bbc09feedc77.tar.bz2
gnurl-04b69c744cfecd19d940353a4e25bbc09feedc77.zip
http: minor whitespace cleanup from f464535b
Diffstat (limited to 'docs/libcurl/opts/CURLOPT_TRAILERDATA.3')
-rw-r--r--docs/libcurl/opts/CURLOPT_TRAILERDATA.38
1 files changed, 0 insertions, 8 deletions
diff --git a/docs/libcurl/opts/CURLOPT_TRAILERDATA.3 b/docs/libcurl/opts/CURLOPT_TRAILERDATA.3
index 32fadd4ac..8162340d4 100644
--- a/docs/libcurl/opts/CURLOPT_TRAILERDATA.3
+++ b/docs/libcurl/opts/CURLOPT_TRAILERDATA.3
@@ -21,24 +21,18 @@
.\" **************************************************************************
.\"
.TH CURLOPT_TRAILERDATA 3 "14 Aug 2018" "libcurl 7.64.0" "curl_easy_setopt options"
-
.SH NAME:
CURLOPT_TRAILERDATA \- Custom pointer passed to the trailing headers callback
-
.SH SYNOPSIS:
#include <curl.h>
CURLcode curl_easy_setopt(CURL *handle, CURLOPT_TRAILERDATA, void *userdata);
-
.SH DESCRIPTION:
Data pointer to be passed to the HTTP trailer callback function.
-
.SH DEFAULT:
NULL
-
.SH PROTOCOLS:
HTTP
-
.SH EXAMPLE:
.nf
/* Assuming we have a CURL handle in the hndl variable. */
@@ -46,12 +40,10 @@ HTTP
struct MyData data;
curl_easy_setopt(hndl, CURLOPT_TRAILERDATA, &data);
-
.fi
A more complete example can be found in examples/http_trailers.html
.SH AVAILABILITY:
This option was added in curl 7.64.0 and is present if HTTP support is enabled
-
.SH "SEE ALSO"
.BR CURLOPT_TRAILERFUNCTION "(3), "