1 .\" $Id: curl_multi_init.3,v 1.1.1.1 2008-09-23 16:32:05 hoffman Exp $
3 .TH curl_multi_init 3 "1 March 2002" "libcurl 7.9.5" "libcurl Manual"
5 curl_multi_init - create a multi handle
7 .B #include <curl/curl.h>
9 .BI "CURLM *curl_multi_init( );"
12 This function returns a CURLM handle to be used as input to all the other
13 multi-functions, sometimes referred to as a multi handle on some places in the
14 documentation. This init call MUST have a corresponding call to
15 \fIcurl_multi_cleanup(3)\fP when the operation is complete.
17 If this function returns NULL, something went wrong and you cannot use the
20 .BR curl_multi_cleanup "(3)," curl_global_init "(3)," curl_easy_init "(3)"