Install curl-7.21.1.tar.bz2
[msysgit.git] / mingw / share / man / man3 / curl_multi_cleanup.3
blobd40173c9946b50aa967680430ca1925d392fb8c6
1 .\"
2 .TH curl_multi_cleanup 3 "1 March 2002" "libcurl 7.9.5" "libcurl Manual"
3 .SH NAME
4 curl_multi_cleanup - close down a multi session
5 .SH SYNOPSIS
6 .B #include <curl/curl.h>
7 .sp
8 .BI "CURLMcode curl_multi_cleanup( CURLM *multi_handle );"
9 .ad
10 .SH DESCRIPTION
11 Cleans up and removes a whole multi stack. It does not free or touch any
12 individual easy handles in any way - they still need to be closed
13 individually, using the usual \fIcurl_easy_cleanup(3)\fP way. The order of
14 cleaning up should be:
16 1 - \fIcurl_multi_remove_handle(3)\fP before any easy handles are cleaned up
18 2 - \fIcurl_easy_cleanup(3)\fP can now be called independently since the easy
19 handle is no longer connected to the multi handle
21 3 - \fIcurl_multi_cleanup(3)\fP should be called when all easy handles are
22 removed
23 .SH RETURN VALUE
24 CURLMcode type, general libcurl multi interface error code.
25 .SH "SEE ALSO"
26 .BR curl_multi_init "(3)," curl_easy_cleanup "(3)," curl_easy_init "(3)"