将变量传递给 curl_easy_setopt C++
pass a variable into curl_easy_setopt C++
如何将全局变量传递给 curl_easy_setopt
int agent_num = rand() % 100000;
std::string agent_name = "https://127.0.0.1:443/agent/" + agent_num;
curl_easy_setopt(curl, CURLOPT_URL, agent_name);
我尝试了不同的方法,他们给了我一个段错误任何帮助谢谢!
std::string
不会自动转换为 char *
。为此使用其 c_str()
方法:
curl_easy_setopt(curl, CURLOPT_URL, agent_name.c_str());
如何将全局变量传递给 curl_easy_setopt
int agent_num = rand() % 100000;
std::string agent_name = "https://127.0.0.1:443/agent/" + agent_num;
curl_easy_setopt(curl, CURLOPT_URL, agent_name);
我尝试了不同的方法,他们给了我一个段错误任何帮助谢谢!
std::string
不会自动转换为 char *
。为此使用其 c_str()
方法:
curl_easy_setopt(curl, CURLOPT_URL, agent_name.c_str());