1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

the *_LARGE options work fine on windows in 7.11.1

This commit is contained in:
Daniel Stenberg 2004-01-23 12:52:04 +00:00
parent 142f40582f
commit 5a58d51993

View File

@ -21,7 +21,7 @@
.\" * $Id$ .\" * $Id$
.\" ************************************************************************** .\" **************************************************************************
.\" .\"
.TH curl_easy_setopt 3 "22 Jan 2004" "libcurl 7.11.0" "libcurl Manual" .TH curl_easy_setopt 3 "22 Jan 2004" "libcurl 7.11.1" "libcurl Manual"
.SH NAME .SH NAME
curl_easy_setopt - set options for a curl easy handle curl_easy_setopt - set options for a curl easy handle
.SH SYNOPSIS .SH SYNOPSIS
@ -645,9 +645,8 @@ techniques).
Pass a long as parameter. It contains the offset in number of bytes that you Pass a long as parameter. It contains the offset in number of bytes that you
want the transfer to start from. want the transfer to start from.
.IP CURLOPT_RESUME_FROM_LARGE .IP CURLOPT_RESUME_FROM_LARGE
Pass an off_t as parameter. It contains the offset in number of bytes that you Pass an curl_off_t as parameter. It contains the offset in number of bytes
want the transfer to start from. This does not yet support large files on that you want the transfer to start from. (Added in 7.11.0)
Windows. (Added in 7.11.0)
.IP CURLOPT_CUSTOMREQUEST .IP CURLOPT_CUSTOMREQUEST
Pass a pointer to a zero terminated string as parameter. It will be user Pass a pointer to a zero terminated string as parameter. It will be user
instead of GET or HEAD when doing a HTTP request, or instead of LIST or NLST instead of GET or HEAD when doing a HTTP request, or instead of LIST or NLST
@ -679,8 +678,7 @@ as a long. See also \fICURLOPT_INFILESIZE_LARGE\fP.
.IP CURLOPT_INFILESIZE_LARGE .IP CURLOPT_INFILESIZE_LARGE
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
libcurl what the expected size of the infile is. This value should be passed libcurl what the expected size of the infile is. This value should be passed
as an off_t. This does not yet support large files on Windows. (Added in as a curl_off_t. (Added in 7.11.0)
7.11.0)
.IP CURLOPT_UPLOAD .IP CURLOPT_UPLOAD
A non-zero parameter tells the library to prepare for an upload. The A non-zero parameter tells the library to prepare for an upload. The
\fICURLOPT_READDATA\fP and \fICURLOPT_INFILESIZE_LARGE\fP are also interesting \fICURLOPT_READDATA\fP and \fICURLOPT_INFILESIZE_LARGE\fP are also interesting
@ -694,10 +692,10 @@ NOTE: The file size is not always known prior to download, and for such files
this option has no effect even if the file transfer ends up being larger than this option has no effect even if the file transfer ends up being larger than
this given limit. This concerns both FTP and HTTP transfers. this given limit. This concerns both FTP and HTTP transfers.
.IP CURLOPT_MAXFILESIZE_LARGE .IP CURLOPT_MAXFILESIZE_LARGE
Pass an off_t as parameter. This allows you to specify the maximum size (in Pass a curl_off_t as parameter. This allows you to specify the maximum size
bytes) of a file to download. If the file requested is larger than this value, (in bytes) of a file to download. If the file requested is larger than this
the transfer will not start and CURLE_FILESIZE_EXCEEDED will be returned. value, the transfer will not start and \fICURLE_FILESIZE_EXCEEDED\fP will be
This does not yet support large files on Windows. (Added in 7.11.0) returned. (Added in 7.11.0)
NOTE: The file size is not always known prior to download, and for such files NOTE: The file size is not always known prior to download, and for such files
this option has no effect even if the file transfer ends up being larger than this option has no effect even if the file transfer ends up being larger than