Lines Matching full:post
15 CURLOPT_POST - make an HTTP POST
22 CURLcode curl_easy_setopt(CURL *handle, CURLOPT_POST, long post);
27 A parameter set to 1 tells libcurl to do a regular HTTP post. This also makes
29 is the most commonly used POST method.
32 options to specify what data to post and CURLOPT_POSTFIELDSIZE(3) or
35 Optionally, you can provide data to POST using the
42 Transfer-Encoding header, see the post-callback.c example.
44 You can override the default POST Content-Type: header by setting your own
47 Using POST with HTTP 1.1 implies the use of a "Expect: 100-continue" header.
50 If you use POST to an HTTP 1.1 server, you can send data without knowing the
51 size before starting the POST if you use chunked encoding. You enable this by
60 If you issue a POST request and then want to make a HEAD or GET using the same
65 default to disable the POST. Typically that means gets reset to GET. Instead