Lines Matching full:post
15 curl_formadd - add a section to a multipart form POST
31 post. Append one section at a time until you have added all the sections you
42 after the form post has been done to free the resources.
44 Using POST with HTTP 1.1 implies the use of a "Expect: 100-continue" header.
51 you want to add to your post.
190 specifies extra headers for the form POST section. This takes a curl_slist
193 the POST occurs, if you free it before the post completes you may experience
214 struct curl_httppost *post = NULL;
230 curl_formadd(&post, &last, CURLFORM_COPYNAME, "name",
234 curl_formadd(&post, &last, CURLFORM_COPYNAME, "htmlcode",
239 curl_formadd(&post, &last, CURLFORM_COPYNAME, "name_for_ptrcontent",
243 curl_formadd(&post, &last, CURLFORM_PTRNAME, namebuffer,
248 curl_formadd(&post, &last, CURLFORM_COPYNAME, "html_code_with_hole",
254 curl_formadd(&post, &last, CURLFORM_COPYNAME, "picture",
258 curl_formadd(&post, &last, CURLFORM_COPYNAME, "picture",
263 curl_formadd(&post, &last, CURLFORM_COPYNAME, "pictures",
275 curl_formadd(&post, &last,
283 curl_formadd(&post, &last, CURLFORM_COPYNAME, "pictures",
285 /* Add the content of a file as a normal post text value */
286 curl_formadd(&post, &last, CURLFORM_COPYNAME, "filecontent",
289 curl_easy_setopt(curl, CURLOPT_HTTPPOST, post);
295 curl_formfree(post);