]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
curl_easy_perform.3: add a para about recv and send data
authorDaniel Stenberg <daniel@haxx.se>
Mon, 8 Nov 2021 13:48:11 +0000 (14:48 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 8 Nov 2021 15:13:42 +0000 (16:13 +0100)
Reported-by: Godwin Stewart
Fixes #7973
Closes #7974

docs/libcurl/curl_easy_perform.3

index 01c543f4ab82f775b8ef8c3a9504cf7242d37d46..1267fb8fdafbd40bedb9238b2325b498217afb13 100644 (file)
@@ -50,6 +50,12 @@ same \fBeasy_handle\fP. Let the function return first before invoking it
 another time. If you want parallel transfers, you must use several curl
 easy_handles.
 
+A network transfer moves data to a peer or from a peer. An application tells
+libcurl how to receive data by setting the \fICURLOPT_WRITEFUNCTION(3)\fP and
+\fICURLOPT_WRITEDATA(3)\fP options. To tell libcurl what data to send, there
+are a few more alternatives but two common ones are
+\fICURLOPT_READFUNCTION(3)\fP and \fICURLOPT_POSTFIELDS(3)\fP.
+
 While the \fBeasy_handle\fP is added to a multi handle, it cannot be used by
 \fIcurl_easy_perform(3)\fP.
 .SH EXAMPLE