は、まあ、私は、C++でのcURLでの要求を行うために、デフォルトのInternet Explorerの接続のプロキシ設定を使用したい、これが私のサンプルコードです:C++でのcURLライブラリの要求でInternet Explorerのプロキシの設定 - Windowsの
CURL *curl;
CURLcode result;
curl = curl_easy_init();
char errorBuffer[CURL_ERROR_SIZE];
if (curl)
{
// Now set up all of the curl options
curl_easy_setopt(curl, CURLOPT_ERRORBUFFER, errorBuffer);
curl_easy_setopt(curl, CURLOPT_URL, url);
curl_easy_setopt(curl, CURLOPT_HEADER, 0);
curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1);
curl_easy_setopt(curl, CURLOPT_COOKIEJAR, "cookies.txt");
// Attempt to retrieve the remote page
result = curl_easy_perform(curl);
// Always cleanup
curl_easy_cleanup(curl);
}
プロキシを使用してリクエストを行うことができるように、プロキシのInternet Explorerの設定を取得してからcURLに渡すにはどうすればよいですか?
ありがとうございます。