Lines Matching refs:post
34 post. Append one section at a time until you have added all the sections you
45 after the form post has been done to free the resources.
54 you want to add to your post.
196 the POST occurs, if you free it before the post completes you may experience
219 struct curl_httppost *post = NULL;
235 curl_formadd(&post, &last, CURLFORM_COPYNAME, "name",
239 curl_formadd(&post, &last, CURLFORM_COPYNAME, "htmlcode",
244 curl_formadd(&post, &last, CURLFORM_COPYNAME, "name_for_ptrcontent",
248 curl_formadd(&post, &last, CURLFORM_PTRNAME, namebuffer,
253 curl_formadd(&post, &last, CURLFORM_COPYNAME, "html_code_with_hole",
259 curl_formadd(&post, &last, CURLFORM_COPYNAME, "picture",
263 curl_formadd(&post, &last, CURLFORM_COPYNAME, "picture",
268 curl_formadd(&post, &last, CURLFORM_COPYNAME, "pictures",
280 curl_formadd(&post, &last,
288 curl_formadd(&post, &last, CURLFORM_COPYNAME, "pictures",
290 /* Add the content of a file as a normal post text value */
291 curl_formadd(&post, &last, CURLFORM_COPYNAME, "filecontent",
294 curl_easy_setopt(curl, CURLOPT_HTTPPOST, post);
300 curl_formfree(post);