aboutsummaryrefslogtreecommitdiff
path: root/docs/libcurl/opts/CURLOPT_READDATA.3
diff options
context:
space:
mode:
authorMichael Kaufmann <mail@michael-kaufmann.ch>2018-08-11 13:52:18 +0200
committerJay Satiro <raysatiro@yahoo.com>2018-08-11 14:33:28 -0400
commitb676b66f4ddc68a0e357fc4cf79b9adb981c8df5 (patch)
tree4af15a65932c8bffc5369ec01b9a6a949cfe6250 /docs/libcurl/opts/CURLOPT_READDATA.3
parentf31911a8002d3c9de109f5352328d8b6fbf035c2 (diff)
docs: Improve the manual pages of some callbacks
- CURLOPT_HEADERFUNCTION: add newlines - CURLOPT_INTERLEAVEFUNCTION: fix the description of 'userdata' - CURLOPT_READDATA: mention crashes, same as in CURLOPT_WRITEDATA - CURLOPT_READFUNCTION: rename 'instream' to 'userdata' and explain how to set it Closes https://github.com/curl/curl/pull/2868
Diffstat (limited to 'docs/libcurl/opts/CURLOPT_READDATA.3')
-rw-r--r--docs/libcurl/opts/CURLOPT_READDATA.35
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/libcurl/opts/CURLOPT_READDATA.3 b/docs/libcurl/opts/CURLOPT_READDATA.3
index ef51264c6..b1fff4c42 100644
--- a/docs/libcurl/opts/CURLOPT_READDATA.3
+++ b/docs/libcurl/opts/CURLOPT_READDATA.3
@@ -35,8 +35,9 @@ input in the 4th argument to the callback.
If you don't specify a read callback but instead rely on the default internal
read function, this data must be a valid readable FILE * (cast to 'void *').
-If you're using libcurl as a win32 DLL, you MUST use a
-\fICURLOPT_READFUNCTION(3)\fP if you set this option.
+If you're using libcurl as a win32 DLL, you \fBMUST\fP use a
+\fICURLOPT_READFUNCTION(3)\fP if you set this option or you will experience
+crashes.
.SH DEFAULT
By default, this is a FILE * to stdin.
.SH PROTOCOLS