Skip to content
Snippets Groups Projects
Commit c3dd928e authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

enable verbose as well

parent aba6c2b8
No related branches found
No related tags found
No related merge requests found
......@@ -7,6 +7,7 @@ int test(char *URL)
curl_easy_setopt(curl, CURLOPT_URL, URL);
curl_easy_setopt(curl, CURLOPT_FILETIME, 1);
curl_easy_setopt(curl, CURLOPT_NOBODY, 1);
curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
res = curl_easy_perform(curl);
curl_easy_cleanup(curl);
return (int)res;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment