CURLOPT_HTTPGET - ask for a HTTP GET request
#include <curl/curl.h>
CURLcode curl_easy_setopt(CURL *handle, CURLOPT_HTTPGET, long useget);
Pass a long. If useget is 1, this forces the HTTP request to get back to using GET. Usable if a POST, HEAD, PUT, etc has been used previously using the same curl handle.
When setting CURLOPT_HTTPGET to 1, it will automatically set CURLOPT_NOBODY to 0 and CURLOPT_UPLOAD to 0.
Returns CURLE_OK if HTTP is supported, and CURLE_UNKNOWN_OPTION if not.
This HTML page was made with roffit.