I'm using C++ and libcurl to make a Web Spider. I'm running into a issue where I get a error saying HTTP is not supported when I use the queue to get the URL. Th error is: http://google.com* Protocol "http not supported or disabled in libcurl* Unsupported protocol. This is my code:
#include <iostream>
#include <queue>
#include <curl/curl.h>
std::string data; //will hold the url's contents
size_t writeCallback(char* buf, size_t size, size_t nmemb, void* up)
{ //callback must have this declaration
//buf is a pointer to the data that curl has for us
//size*nmemb is the size of the buffer
for (int c = 0; c<size*nmemb; c++)
{
data.push_back(buf[c]);
}
return size*nmemb; //tell curl how many bytes we handled
}
int main(int argc, const char * argv[])
{
std::queue<std::string> Q;
Q.push("http://google.com");
while (!Q.empty()) {
std::string url = Q.front();
std::cout << Q.front();
CURL* curl; //our curl object
curl_global_init(CURL_GLOBAL_ALL); //pretty obvious
curl = curl_easy_init();
curl_easy_setopt(curl, CURLOPT_URL, &url);
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, &writeCallback);
curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L); //tell curl to output its progress
curl_easy_perform(curl);
std::cout << std::endl << data << std::endl;
std::cin.get();
curl_easy_cleanup(curl);
curl_global_cleanup();
data.erase();
Q.pop();
}
return 0;
}
I'm new to C++. What direction should I look in to find out how-to fix this?

std::queue. Have you checked whether your version oflibcurlsupports HTTP at all? – Zeta Jan 1 at 21:47curl_easy_setopt(curl, CURLOPT_URL, &url);tocurl_easy_setopt(curl, CURLOPT_URL, "http://google.com");it works – Sam Baumgarten Jan 1 at 21:49char *, not astd::string*. Trycurl_easy_setopt(curl, CURLOPT_URL, url.c_str());instead. – Zeta Jan 1 at 21:50