|
目的 : 向vlan号为eth0,地址为 http://192.168.1.1/setparam.cgi? 的猫, 传送字符串internetset=1&ucaBaseMacAddr=00085CD20000&userPassword=ensmn&wlSsid=CTC-6bzTXq&wlPassword=zvpmsyqa&serial=00085C-7A10020000060060FE1C00085CD20000
我的主要代码如下: CURL *curl;
CURLcode res;
curl = curl_easy_init();
if(curl) {
curl_easy_setopt(curl, CURLOPT_INTERFACE,interface);
curl_easy_setopt(curl, CURLOPT_URL, target_url);
curl_easy_setopt(curl, CURLOPT_POST, 1);
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, values_url);
res = curl_easy_perform(curl);
curl_easy_cleanup(curl);
但是传送不成功,请问问题在哪个地方 ,正确的代码应该怎么写?谢谢。
|
|