curl_formadd.3
上传用户:coffee44
上传日期:2018-10-23
资源大小:12304k
文件大小:10k
源码类别:

TAPI编程

开发平台:

Visual C++

  1. ." You can view this file with:
  2. ." nroff -man [file]
  3. ." $Id: curl_formadd.3,v 1.19 2009-01-12 21:22:51 bagder Exp $
  4. ."
  5. .TH curl_formadd 3 "24 June 2002" "libcurl 7.9.8" "libcurl Manual"
  6. .SH NAME
  7. curl_formadd - add a section to a multipart/formdata HTTP POST
  8. .SH SYNOPSIS
  9. .B #include <curl/curl.h>
  10. .sp
  11. .BI "CURLFORMcode curl_formadd(struct curl_httppost ** " firstitem,
  12. .BI "struct curl_httppost ** " lastitem, " ...);"
  13. .ad
  14. .SH DESCRIPTION
  15. curl_formadd() is used to append sections when building a multipart/formdata
  16. HTTP POST (sometimes referred to as rfc1867-style posts). Append one section at
  17. a time until you've added all the sections you want included and then you pass
  18. the fIfirstitemfP pointer as parameter to fBCURLOPT_HTTPPOSTfP.
  19. fIlastitemfP is set after each call and on repeated invokes it should be
  20. left as set to allow repeated invokes to find the end of the list faster.
  21. After the fIlastitemfP pointer follow the real arguments.
  22. The pointers fI*firstitemfP and fI*lastitemfP should both be pointing to
  23. NULL in the first call to this function. All list-data will be allocated by
  24. the function itself. You must call fIcurl_formfree(3)fP after the form post
  25. has been done to free the resources.
  26. Using POST with HTTP 1.1 implies the use of a "Expect: 100-continue" header.
  27. You can disable this header with fICURLOPT_HTTPHEADERfP as usual.
  28. First, there are some basics you need to understand about multipart/formdata
  29. posts. Each part consists of at least a NAME and a CONTENTS part. If the part
  30. is made for file upload, there are also a stored CONTENT-TYPE and a FILENAME.
  31. Below, we'll discuss what options you use to set these properties in the
  32. parts you want to add to your post.
  33. The options listed first are for making normal parts. The options from
  34. fICURLFORM_FILEfP through fICURLFORM_BUFFERLENGTHfP are for file upload
  35. parts.
  36. .SH OPTIONS
  37. .IP CURLFORM_COPYNAME
  38. followed by a string which provides the fInamefP of this part. libcurl
  39. copies the string so your application doesn't need to keep it around after
  40. this function call. If the name isn't NUL-terminated, or if you'd
  41. like it to contain zero bytes, you must set its length with
  42. fBCURLFORM_NAMELENGTHfP. The copied data will be freed by
  43. fIcurl_formfree(3)fP.
  44. .IP CURLFORM_PTRNAME
  45. followed by a string which provides the fInamefP of this part. libcurl
  46. will use the pointer and refer to the data in your application, so you
  47. must make sure it remains until curl no longer needs it. If the name
  48. isn't NUL-terminated, or if you'd like it to contain zero
  49. bytes, you must set its length with fBCURLFORM_NAMELENGTHfP.
  50. .IP CURLFORM_COPYCONTENTS
  51. followed by a pointer to the contents of this part, the actual data
  52. to send away. libcurl copies the provided data, so your application doesn't
  53. need to keep it around after this function call. If the data isn't null
  54. terminated, or if you'd like it to contain zero bytes, you must
  55. set the length of the name with fBCURLFORM_CONTENTSLENGTHfP. The copied
  56. data will be freed by fIcurl_formfree(3)fP.
  57. .IP CURLFORM_PTRCONTENTS
  58. followed by a pointer to the contents of this part, the actual data
  59. to send away. libcurl will use the pointer and refer to the data in your
  60. application, so you must make sure it remains until curl no longer needs it.
  61. If the data isn't NUL-terminated, or if you'd like it to contain zero bytes,
  62. you must set its length  with fBCURLFORM_CONTENTSLENGTHfP.
  63. .IP CURLFORM_CONTENTSLENGTH
  64. followed by a long giving the length of the contents. Note that for
  65. fICURLFORM_STREAMfP contents, this option is mandatory.
  66. .IP CURLFORM_FILECONTENT
  67. followed by a filename, causes that file to be read and its contents used
  68. as data in this part. This part does fInotfP automatically become a file
  69. upload part simply because its data was read from a file.
  70. .IP CURLFORM_FILE
  71. followed by a filename, makes this part a file upload part. It sets the
  72. fIfilenamefP field to the basename of the provided filename, it reads the
  73. contents of the file and passes them as data and sets the content-type if the
  74. given file match one of the internally known file extensions.  For
  75. fBCURLFORM_FILEfP the user may send one or more files in one part by
  76. providing multiple fBCURLFORM_FILEfP arguments each followed by the filename
  77. (and each fICURLFORM_FILEfP is allowed to have a
  78. fICURLFORM_CONTENTTYPEfP).
  79. .IP CURLFORM_CONTENTTYPE
  80. is used in combination with fICURLFORM_FILEfP. Followed by a pointer to a
  81. string which provides the content-type for this part, possibly instead of an
  82. internally chosen one.
  83. .IP CURLFORM_FILENAME
  84. is used in combination with fICURLFORM_FILEfP. Followed by a pointer to a
  85. string, it tells libcurl to use the given string as the fIfilenamefP in the
  86. file upload part instead of the actual file name.
  87. .IP CURLFORM_BUFFER
  88. is used for custom file upload parts without use of fICURLFORM_FILEfP.  It
  89. tells libcurl that the file contents are already present in a buffer.  The
  90. parameter is a string which provides the fIfilenamefP field in the content
  91. header.
  92. .IP CURLFORM_BUFFERPTR
  93. is used in combination with fICURLFORM_BUFFERfP. The parameter is a pointer
  94. to the buffer to be uploaded. This buffer must not be freed until after
  95. fIcurl_easy_cleanup(3)fP is called. You must also use
  96. fICURLFORM_BUFFERLENGTHfP to set the number of bytes in the buffer.
  97. .IP CURLFORM_BUFFERLENGTH
  98. is used in combination with fICURLFORM_BUFFERfP. The parameter is a
  99. long which gives the length of the buffer.
  100. .IP CURLFORM_STREAM
  101. Tells libcurl to use the fICURLOPT_READFUNCTIONfP callback to get data. The
  102. parameter you pass to fICURLFORM_STREAMfP is the pointer passed on to the
  103. read callback's fourth argument. If you want the part to look like a file
  104. upload one, set the fICURLFORM_FILENAMEfP parameter as well. Note that when
  105. using fICURLFORM_STREAMfP, fICURLFORM_CONTENTSLENGTHfP must also be set
  106. with the total expected length of the part. (Option added in libcurl 7.18.2)
  107. .IP CURLFORM_ARRAY
  108. Another possibility to send options to curl_formadd() is the
  109. fBCURLFORM_ARRAYfP option, that passes a struct curl_forms array pointer as
  110. its value. Each curl_forms structure element has a CURLformoption and a char
  111. pointer. The final element in the array must be a CURLFORM_END. All available
  112. options can be used in an array, except the CURLFORM_ARRAY option itself!  The
  113. last argument in such an array must always be fBCURLFORM_ENDfP.
  114. .IP CURLFORM_CONTENTHEADER
  115. specifies extra headers for the form POST section.  This takes a curl_slist
  116. prepared in the usual way using fBcurl_slist_appendfP and appends the list
  117. of headers to those libcurl automatically generates. The list must exist while
  118. the POST occurs, if you free it before the post completes you may experience
  119. problems.
  120. When you've passed the HttpPost pointer to fIcurl_easy_setopt(3)fP (using
  121. the fICURLOPT_HTTPPOSTfP option), you must not free the list until after
  122. you've called fIcurl_easy_cleanup(3)fP for the curl handle.
  123. See example below.
  124. .SH RETURN VALUE
  125. 0 means everything was ok, non-zero means an error occurred corresponding
  126. to a CURL_FORMADD_* constant defined in
  127. .I <curl/curl.h>
  128. .SH EXAMPLE
  129. .nf
  130.  struct curl_httppost* post = NULL;
  131.  struct curl_httppost* last = NULL;
  132.  char namebuffer[] = "name buffer";
  133.  long namelength = strlen(namebuffer);
  134.  char buffer[] = "test buffer";
  135.  char htmlbuffer[] = "<HTML>test buffer</HTML>";
  136.  long htmlbufferlength = strlen(htmlbuffer);
  137.  struct curl_forms forms[3];
  138.  char file1[] = "my-face.jpg";
  139.  char file2[] = "your-face.jpg";
  140.  /* add null character into htmlbuffer, to demonstrate that
  141.     transfers of buffers containing null characters actually work
  142.  */
  143.  htmlbuffer[8] = '\0';
  144.  /* Add simple name/content section */
  145.  curl_formadd(&post, &last, CURLFORM_COPYNAME, "name",
  146.               CURLFORM_COPYCONTENTS, "content", CURLFORM_END); 
  147.  /* Add simple name/content/contenttype section */
  148.  curl_formadd(&post, &last, CURLFORM_COPYNAME, "htmlcode",
  149.               CURLFORM_COPYCONTENTS, "<HTML></HTML>",
  150.               CURLFORM_CONTENTTYPE, "text/html", CURLFORM_END);
  151.  /* Add name/ptrcontent section */
  152.  curl_formadd(&post, &last, CURLFORM_COPYNAME, "name_for_ptrcontent",
  153.               CURLFORM_PTRCONTENTS, buffer, CURLFORM_END);
  154.  /* Add ptrname/ptrcontent section */
  155.  curl_formadd(&post, &last, CURLFORM_PTRNAME, namebuffer,
  156.       CURLFORM_PTRCONTENTS, buffer, CURLFORM_NAMELENGTH,
  157.       namelength, CURLFORM_END);
  158.  /* Add name/ptrcontent/contenttype section */
  159.  curl_formadd(&post, &last, CURLFORM_COPYNAME, "html_code_with_hole",
  160.               CURLFORM_PTRCONTENTS, htmlbuffer,
  161.               CURLFORM_CONTENTSLENGTH, htmlbufferlength,
  162.               CURLFORM_CONTENTTYPE, "text/html", CURLFORM_END);
  163.  /* Add simple file section */
  164.  curl_formadd(&post, &last, CURLFORM_COPYNAME, "picture",
  165.               CURLFORM_FILE, "my-face.jpg", CURLFORM_END);
  166.  /* Add file/contenttype section */
  167.  curl_formadd(&post, &last, CURLFORM_COPYNAME, "picture",
  168.               CURLFORM_FILE, "my-face.jpg",
  169.               CURLFORM_CONTENTTYPE, "image/jpeg", CURLFORM_END);
  170.  /* Add two file section */
  171.  curl_formadd(&post, &last, CURLFORM_COPYNAME, "pictures",
  172.               CURLFORM_FILE, "my-face.jpg",
  173.               CURLFORM_FILE, "your-face.jpg", CURLFORM_END);
  174.  /* Add two file section using CURLFORM_ARRAY */
  175.  forms[0].option = CURLFORM_FILE;
  176.  forms[0].value  = file1;
  177.  forms[1].option = CURLFORM_FILE;
  178.  forms[1].value  = file2;
  179.  forms[2].option  = CURLFORM_END;
  180.  /* Add a buffer to upload */
  181.  curl_formadd(&post, &last,
  182.               CURLFORM_COPYNAME, "name",
  183.               CURLFORM_BUFFER, "data",
  184.               CURLFORM_BUFFERPTR, record,
  185.               CURLFORM_BUFFERLENGTH, record_length,
  186.               CURLFORM_END);
  187.  /* no option needed for the end marker */
  188.  curl_formadd(&post, &last, CURLFORM_COPYNAME, "pictures",
  189.               CURLFORM_ARRAY, forms, CURLFORM_END);
  190.  /* Add the content of a file as a normal post text value */
  191.  curl_formadd(&post, &last, CURLFORM_COPYNAME, "filecontent",
  192.               CURLFORM_FILECONTENT, ".bashrc", CURLFORM_END);
  193.  /* Set the form info */
  194.  curl_easy_setopt(curl, CURLOPT_HTTPPOST, post);
  195. .SH "SEE ALSO"
  196. .BR curl_easy_setopt "(3), "
  197. .BR curl_formfree "(3)"