Home
last modified time | relevance | path

Searched refs:post (Results 1 – 25 of 77) sorted by relevance

1234

/curl/tests/unit/
H A Dunit1308.c48 struct curl_httppost *post = NULL; variable
54 rc = curl_formadd(&post, &last, CURLFORM_COPYNAME, "name",
61 fail_unless(post == last, "post and last weren't the same");
64 rc = curl_formadd(&post, &last, CURLFORM_COPYNAME, "htmlcode",
71 rc = curl_formadd(&post, &last, CURLFORM_COPYNAME, "name_for_ptrcontent",
77 res = curl_formget(post, &total_size, print_httppost_callback);
84 curl_formfree(post);
88 post = last = NULL;
91 rc = curl_formadd(&post, &last,
100 res = curl_formget(post, &total_size, print_httppost_callback);
[all …]
/curl/lib/
H A Dformdata.c87 if(post) { in AddHttpPost()
88 post->name = name; in AddHttpPost()
97 post->userp = userp; in AddHttpPost()
119 return post; in AddHttpPost()
550 post = NULL; in FormAdd()
642 if(!post) { in FormAdd()
827 if(!post) in Curl_getformdata()
838 for(; !result && post; post = post->next) { in Curl_getformdata()
841 if(post->more) { in Curl_getformdata()
846 result = setname(part, post->name, post->namelength); in Curl_getformdata()
[all …]
H A Dformdata.h54 struct curl_httppost *post,
/curl/tests/data/
H A Dtest5631 data "we post this"
33 # enforce chunky post!
60 we post this
H A Dtest1207 post-quote
31 ftp download with post-quote delete operation
H A Dtest1217 post-quote
29 ftp download with post- and pre-transfer delete operations
H A Dtest6095 post-quote
25 SFTP post-quote mkdir failure
H A Dtest55481 this is what we post to the silly web server
86 this is what we post to the silly web server
112 this is what we post to the silly web server
117 this is what we post to the silly web server
H A Dtest6105 post-quote
27 SFTP post-quote rmdir
H A Dtest6115 post-quote
27 SFTP post-quote rename
H A Dtest6125 post-quote
24 SFTP post-quote remove file
H A Dtest6385 post-quote
29 SFTP post-quote rename * asterisk accept-fail
H A Dtest6395 post-quote
29 SFTP post-quote rename * asterisk accept-fail
H A Dtest55335 HTTP post with huge request headers and post data from callback
H A Dtest127018 Cache-Control: no-cache,no-store,must-revalidate,post-check=0,pre-check=0
56 Cache-Control: no-cache,no-store,must-revalidate,post-check=0,pre-check=0
H A Dtest6085 post-quote
24 SFTP post-quote rename
/curl/docs/libcurl/
H A Dcurl_formadd.md45 after the form post has been done to free the resources.
54 you want to add to your post.
219 struct curl_httppost *post = NULL;
235 curl_formadd(&post, &last, CURLFORM_COPYNAME, "name",
239 curl_formadd(&post, &last, CURLFORM_COPYNAME, "htmlcode",
248 curl_formadd(&post, &last, CURLFORM_PTRNAME, namebuffer,
259 curl_formadd(&post, &last, CURLFORM_COPYNAME, "picture",
263 curl_formadd(&post, &last, CURLFORM_COPYNAME, "picture",
280 curl_formadd(&post, &last,
294 curl_easy_setopt(curl, CURLOPT_HTTPPOST, post);
[all …]
/curl/tests/
H A Dtest1140.pl66 my ($pre, $str, $post)=($1, $2, $3);
71 if($post ne "P") {
/curl/docs/examples/
H A D.gitignore33 http-post
70 multi-post
87 post-callback
H A DMakefile.inc54 http-post \
90 multi-post \
106 post-callback \
/curl/docs/libcurl/opts/
H A DCURLOPT_POSTFIELDSIZE.md29 If you want to post static data to the server without having libcurl do a
31 is used you can post fully binary data, which otherwise is likely to fail. If
35 If you post more than 2GB, use CURLOPT_POSTFIELDSIZE_LARGE(3).
H A DCURLOPT_MIMEPOST.md37 This setting is supported by the HTTP protocol to post forms and by the
71 curl_easy_perform(curl); /* post away! */
72 curl_mime_free(multipart); /* free the post data */
H A DCURLOPT_POST.md25 CURLcode curl_easy_setopt(CURL *handle, CURLOPT_POST, long post);
30 A parameter set to 1 tells libcurl to do a regular HTTP post. This also makes
35 options to specify what data to post and CURLOPT_POSTFIELDSIZE(3) or
45 Transfer-Encoding header, see the post-callback.c example.
H A DCURLOPT_POSTFIELDSIZE_LARGE.md31 If you want to post static data to the server without having libcurl do a
33 is used you can post fully binary data, which otherwise is likely to fail. If
/curl/.github/
H A Dstale.yml15 # Comment to post when marking an issue as stale. Set to `false` to disable
20 # Comment to post when closing a stale issue. Set to `false` to disable

Completed in 21 milliseconds

1234