CURLOPT_UPLOAD.3 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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_UPLOAD 3 "17 Jun 2014" "libcurl 7.37.0" "curl_easy_setopt options"
  24. .SH NAME
  25. CURLOPT_UPLOAD \- data upload
  26. .SH SYNOPSIS
  27. .nf
  28. #include <curl/curl.h>
  29. CURLcode curl_easy_setopt(CURL *handle, CURLOPT_UPLOAD, long upload);
  30. .fi
  31. .SH DESCRIPTION
  32. The long parameter \fIupload\fP set to 1 tells the library to prepare for and
  33. perform an upload. The \fICURLOPT_READDATA(3)\fP and
  34. \fICURLOPT_INFILESIZE(3)\fP or \fICURLOPT_INFILESIZE_LARGE(3)\fP options are
  35. also interesting for uploads. If the protocol is HTTP, uploading means using
  36. the PUT request unless you tell libcurl otherwise.
  37. Using PUT with HTTP 1.1 implies the use of a "Expect: 100-continue" header.
  38. You can disable this header with \fICURLOPT_HTTPHEADER(3)\fP as usual.
  39. If you use PUT to an HTTP 1.1 server, you can upload data without knowing the
  40. size before starting the transfer if you use chunked encoding. You enable this
  41. by adding a header like "Transfer-Encoding: chunked" with
  42. \fICURLOPT_HTTPHEADER(3)\fP. With HTTP 1.0 or without chunked transfer, you
  43. must specify the size.
  44. .SH DEFAULT
  45. 0, default is download
  46. .SH PROTOCOLS
  47. Most
  48. .SH EXAMPLE
  49. .nf
  50. CURL *curl = curl_easy_init();
  51. if(curl) {
  52. /* we want to use our own read function */
  53. curl_easy_setopt(curl, CURLOPT_READFUNCTION, read_callback);
  54. /* enable uploading */
  55. curl_easy_setopt(curl, CURLOPT_UPLOAD, 1L);
  56. /* specify target */
  57. curl_easy_setopt(curl, CURLOPT_URL, "ftp://example.com/dir/to/newfile");
  58. /* now specify which pointer to pass to our callback */
  59. curl_easy_setopt(curl, CURLOPT_READDATA, hd_src);
  60. /* Set the size of the file to upload */
  61. curl_easy_setopt(curl, CURLOPT_INFILESIZE_LARGE, (curl_off_t)fsize);
  62. /* Now run off and do what you have been told! */
  63. curl_easy_perform(curl);
  64. }
  65. .fi
  66. .SH AVAILABILITY
  67. Always
  68. .SH RETURN VALUE
  69. Returns CURLE_OK
  70. .SH "SEE ALSO"
  71. .BR CURLOPT_PUT "(3), " CURLOPT_READFUNCTION "(3), "
  72. .BR CURLOPT_INFILESIZE_LARGE "(3), "