Movatterモバイル変換


[0]ホーム

URL:


API Overview
Docs
API: easyAPI: multiAPI: shareAPI: URLAPI: WebSocketEnvironment varsErrorsExamplesSecuritySymbolsTutorial
easy setopt optionseasy getinfo optionsmulti setopt optionsTLS options
Functions
All functionscurl_easy_getinfocurl_easy_initcurl_easy_performcurl_easy_resetcurl_easy_setoptcurl_multi_add_handlecurl_multi_initcurl_multi_performcurl_multi_remove_handlecurl_multi_setopt
curl /libcurl /API /Examples /imap-multi.c

imap-multi.c

Related:
All functions
File a bug
Symbols
View in git
View raw
  ###  (){  CURL *curl;  CURLM *mcurl; still_running = 1; curl_global_init(CURL_GLOBAL_DEFAULT);   curl =curl_easy_init();(!curl) 1;   mcurl =curl_multi_init();(!mcurl) 2; curl_easy_setopt(curl,CURLOPT_USERNAME,);curl_easy_setopt(curl,CURLOPT_PASSWORD,); curl_easy_setopt(curl,CURLOPT_URL,); curl_multi_add_handle(mcurl, curl);  {    CURLMcode mc =curl_multi_perform(mcurl, &still_running); (still_running)      mc =curl_multi_poll(mcurl, NULL, 0, 1000, NULL); (mc);  }(still_running); curl_multi_remove_handle(mcurl, curl);curl_multi_cleanup(mcurl);curl_easy_cleanup(curl);curl_global_cleanup();  0;}

Notice

This source code example issimplified and ignores returncodes and error checks to a large extent. We do this to highlight the libcurlfunction calls and related options and reduce unrelated code.

A real-world application will of course properly check every return value andexit correctly at the first serious error.


[8]ページ先頭

©2009-2025 Movatter.jp