Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the following code:

void MYClass::process()
{
m_telemetryThreadRunning = true;    
while(m_telemetryThreadRunning)
{       
    vector<Json_info *>::iterator it;       
    if(telemetryJSONList.size())
    {
        for(it=telemetryJSONList.begin(); it!=telemetryJSONList.end(); it++)
        {           
            if((*it)->addedHandle == false)
            {                   
                (*it)->addedHandle = true;
                sendAnalytics(*it);                 
            }

        }
        performTelemetry();
    }       
}   
LOGI("Telemetry thread finished\n");
}    

void MYClass::send(Json_info *telemetryJson)
 {  
if(telemetryJson->json!=NULL)
{
    bufferdata = "";
    string cJSONstring = cJSON_Print(telemetryJson->json);      
    string url = m_url+"/ws/telemetry/save";                        

    CURL *curl = curl_easy_init();      
    curl_easy_setopt(curl, CURLOPT_URL, url.c_str());                       
    curl_easy_setopt(curl, CURLOPT_WRITEDATA, &bufferdata);             
    curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, writerResponse);      
    struct curl_slist *headers=NULL;        
    headers = curl_slist_append(headers, "Accept: application/json");       
    headers = curl_slist_append(headers, "Content-Type: application/json");     
    curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers );       
    curl_easy_setopt(curl, CURLOPT_POSTFIELDS, cJSONstring.c_str());        
    curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE, cJSONstring.length());        
    curl_easy_setopt(curl, CURLOPT_VERBOSE,1);          
    curl_easy_setopt(curl, CURLOPT_HEADER,1);                   
    curl_easy_setopt(curl, CURLOPT_DEBUGFUNCTION, my_trace);    
    curl_easy_setopt(curl, CURLOPT_ERRORBUFFER, errorbuffer);

    CURLMcode  ret = curl_multi_add_handle(m_telemetryCurlm, curl); 
    LOGI("%s", curl_multi_strerror(ret) );      
}
}
int MYClass::perform()
{       
// number of active downloads
int counter = 0;

CURLMcode  ret=curl_multi_perform(m_telemetryCurlm, &counter);  
if(ret!=CURLM_OK)
    LOGI("%s", curl_multi_strerror(ret) );

// handle CURL actions (connection errors, download finish, etc.)
checkCURLMessages();    
}
void MYClass::checkCURLMessages()
{
int msgs_in_queue;
CURLMsg *msg;
while( (msg = curl_multi_info_read( m_telemetryCurlm,  &msgs_in_queue)) != NULL)
{       
    switch(msg->msg)
    {
        case CURLMSG_DONE:
            {               
                curl_multi_remove_handle(m_telemetryCurlm, e);
                curl_easy_cleanup(e);
            }
            break;
        default:
            LOGE("Unknown message: %d\n", msg->msg);
    }
}
}

process method is the routine of a c++ thread. I add handles in send method and perform the handles in perform method. I check the message returned from curl_multi_perform in checkCurlMerssages. I get no error. From debug function I receive HTTP/1.1 200 OK, but nothing is written to the server. Do you have any idea what can it be? Thanks

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.