+ enable verbose already from the start
Closes #11621
ETag: "21025-dc7-39462498"\r
Accept-Ranges: bytes\r
Content-Length: 6\r
-Connection: close\r
Content-Type: text/html\r
Funny-head: yesyes\r
\r
cl = curl_easy_init();
curl_easy_setopt(cl, CURLOPT_URL, URL);
+ curl_easy_setopt(cl, CURLOPT_VERBOSE, 1L);
curl_easy_perform(cl);
/* re-use handle, do a second transfer */
curl_easy_setopt(cl, CURLOPT_URL, URL2);
- curl_easy_setopt(cl, CURLOPT_VERBOSE, 1L);
curl_easy_perform(cl);
curl_easy_cleanup(cl);
curl_global_cleanup();