我正在做这个项目,其中一小部分是连接到服务器并做一些事情,如果它在一段时间内无法连接到服务器,则给出错误消息。
我知道 curl 代码看起来像这样
curl_easy_setopt(c,CURLOPT_CONNECTTIMEOUT,1L);
并且它具有MilliSecond选项。我要的是程序在给定时间内(在本例中为1秒)内curl无法连接到服务器时提醒我。

最佳答案

你有试过吗

char* pErrorBuffer = NULL;
pErrorBuffer = (char*)malloc( 512 );
memset( pErrorBuffer, 0, 512 );
curl_easy_setopt( curlHandle, CURLOPT_ERRORBUFFER, pErrorBuffer );
curl_easy_setopt( curlHandle, CURLOPT_CONNECTTIMEOUT, 1 ); // 1 s connect timeout
if( CURLE_OK != curl_easy_perform( curlHandle ) )
{
    // pErrorBuffer contains error string returned by cURL
    pErrorBuffer[511] = '\0';
    printf( "cURL returned: %s", pErrorBuffer );
}
// Free when you're done.
free( pErrorBuffer );

09-07 18:48