/curl/tests/unit/ |
H A D | unit1308.c | 48 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 D | formdata.c | 89 if(post) { in AddHttpPost() 90 post->name = name; in AddHttpPost() 99 post->userp = userp; in AddHttpPost() 121 return post; in AddHttpPost() 552 post = NULL; in FormAdd() 644 if(!post) { in FormAdd() 829 if(!post) in Curl_getformdata() 840 for(; !result && post; post = post->next) { in Curl_getformdata() 843 if(post->more) { in Curl_getformdata() 848 result = setname(part, post->name, post->namelength); in Curl_getformdata() [all …]
|
H A D | formdata.h | 54 struct curl_httppost *post,
|
/curl/tests/data/ |
H A D | test56 | 31 data "we post this" 33 # enforce chunky post! 60 we post this
|
H A D | test120 | 7 post-quote 31 ftp download with post-quote delete operation
|
H A D | test609 | 5 post-quote 25 SFTP post-quote mkdir failure
|
H A D | test121 | 7 post-quote 29 ftp download with post- and pre-transfer delete operations
|
H A D | test554 | 81 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 D | test610 | 5 post-quote 27 SFTP post-quote rmdir
|
H A D | test611 | 5 post-quote 27 SFTP post-quote rename
|
H A D | test612 | 5 post-quote 24 SFTP post-quote remove file
|
H A D | test638 | 5 post-quote 29 SFTP post-quote rename * asterisk accept-fail
|
H A D | test639 | 5 post-quote 29 SFTP post-quote rename * asterisk accept-fail
|
H A D | test553 | 35 HTTP post with huge request headers and post data from callback
|
H A D | test1270 | 18 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 D | test608 | 5 post-quote 24 SFTP post-quote rename
|
/curl/docs/libcurl/ |
H A D | curl_formadd.md | 45 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 D | test1140.pl | 66 my ($pre, $str, $post)=($1, $2, $3); 71 if($post ne "P") {
|
/curl/docs/examples/ |
H A D | .gitignore | 33 http-post 70 multi-post 87 post-callback
|
H A D | Makefile.inc | 54 http-post \ 90 multi-post \ 106 post-callback \
|
/curl/docs/libcurl/opts/ |
H A D | CURLOPT_POSTFIELDSIZE.md | 29 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 D | CURLOPT_MIMEPOST.md | 37 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 D | CURLOPT_POST.md | 25 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 D | CURLOPT_POSTFIELDSIZE_LARGE.md | 31 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 D | stale.yml | 15 # 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
|