mirror of
https://github.com/moparisthebest/curl
synced 2024-12-22 08:08:50 -05:00
corrected the READFUNCTION docs slightly
This commit is contained in:
parent
47e67eab26
commit
bbcfc10677
@ -2,7 +2,7 @@
|
|||||||
.\" nroff -man [file]
|
.\" nroff -man [file]
|
||||||
.\" $Id$
|
.\" $Id$
|
||||||
.\"
|
.\"
|
||||||
.TH curl_easy_setopt 3 "30 Nov 2001" "libcurl 7.9.2" "libcurl Manual"
|
.TH curl_easy_setopt 3 "10 Dec 2001" "libcurl 7.9.2" "libcurl Manual"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
curl_easy_setopt - Set curl easy-session options
|
curl_easy_setopt - Set curl easy-session options
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
@ -77,9 +77,8 @@ function gets called by libcurl as soon as it needs to read data in order to
|
|||||||
send it to the peer. The data area pointed at by the pointer \fIptr\fP may be
|
send it to the peer. The data area pointed at by the pointer \fIptr\fP may be
|
||||||
filled with at most \fIsize\fP multiplied with \fInmemb\fP number of
|
filled with at most \fIsize\fP multiplied with \fInmemb\fP number of
|
||||||
bytes. Your function must return the actual number of bytes that you stored in
|
bytes. Your function must return the actual number of bytes that you stored in
|
||||||
that memory area. Returning -1 will signal an error to the library and cause
|
that memory area. Returning 0 will signal end-of-file to the library and cause
|
||||||
it to abort the current transfer immediately (with a \fICURLE_READ_ERROR\fP
|
it to stop the current transfer.
|
||||||
return code).
|
|
||||||
.TP
|
.TP
|
||||||
.B CURLOPT_INFILESIZE
|
.B CURLOPT_INFILESIZE
|
||||||
When uploading a file to a remote site, this option should be used to tell
|
When uploading a file to a remote site, this option should be used to tell
|
||||||
|
Loading…
Reference in New Issue
Block a user