CURLOPT_INFILESIZE.3 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. .\" **************************************************************************
  2. .\" * _ _ ____ _
  3. .\" * Project ___| | | | _ \| |
  4. .\" * / __| | | | |_) | |
  5. .\" * | (__| |_| | _ <| |___
  6. .\" * \___|\___/|_| \_\_____|
  7. .\" *
  8. .\" * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
  9. .\" *
  10. .\" * This software is licensed as described in the file COPYING, which
  11. .\" * you should have received as part of this distribution. The terms
  12. .\" * are also available at https://curl.se/docs/copyright.html.
  13. .\" *
  14. .\" * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. .\" * copies of the Software, and permit persons to whom the Software is
  16. .\" * furnished to do so, under the terms of the COPYING file.
  17. .\" *
  18. .\" * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. .\" * KIND, either express or implied.
  20. .\" *
  21. .\" **************************************************************************
  22. .\"
  23. .TH CURLOPT_INFILESIZE 3 "17 Jun 2014" "libcurl 7.37.0" "curl_easy_setopt options"
  24. .SH NAME
  25. CURLOPT_INFILESIZE \- size of the input file to send off
  26. .SH SYNOPSIS
  27. .nf
  28. #include <curl/curl.h>
  29. CURLcode curl_easy_setopt(CURL *handle, CURLOPT_INFILESIZE, long filesize);
  30. .fi
  31. .SH DESCRIPTION
  32. When uploading a file to a remote site, \fIfilesize\fP should be used to tell
  33. libcurl what the expected size of the input file is. This value must be passed
  34. as a long. See also \fICURLOPT_INFILESIZE_LARGE(3)\fP for sending files larger
  35. than 2GB.
  36. For uploading using SCP, this option or \fICURLOPT_INFILESIZE_LARGE(3)\fP is
  37. mandatory.
  38. To unset this value again, set it to -1.
  39. When sending emails using SMTP, this command can be used to specify the
  40. optional SIZE parameter for the MAIL FROM command.
  41. This option does not limit how much data libcurl will actually send, as that
  42. is controlled entirely by what the read callback returns, but telling one
  43. value and sending a different amount may lead to errors.
  44. .SH DEFAULT
  45. Unset
  46. .SH PROTOCOLS
  47. Many
  48. .SH EXAMPLE
  49. .nf
  50. CURL *curl = curl_easy_init();
  51. if(curl) {
  52. long uploadsize = FILE_SIZE;
  53. curl_easy_setopt(curl, CURLOPT_URL, "ftp://example.com/destination.tar.gz");
  54. curl_easy_setopt(curl, CURLOPT_UPLOAD, 1L);
  55. curl_easy_setopt(curl, CURLOPT_INFILESIZE, uploadsize);
  56. curl_easy_perform(curl);
  57. }
  58. .fi
  59. .SH AVAILABILITY
  60. SMTP support added in 7.23.0
  61. .SH RETURN VALUE
  62. Returns CURLE_OK if the option is supported, and CURLE_UNKNOWN_OPTION if not.
  63. .SH "SEE ALSO"
  64. .BR CURLOPT_INFILESIZE_LARGE "(3), " CURLOPT_UPLOAD "(3), "