Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

curl_multi_cleanup(3) [suse man page]

curl_multi_cleanup(3)						  libcurl Manual					     curl_multi_cleanup(3)

NAME
curl_multi_cleanup - close down a multi session SYNOPSIS
#include <curl/curl.h> CURLMcode curl_multi_cleanup( CURLM *multi_handle ); DESCRIPTION
Cleans up and removes a whole multi stack. It does not free or touch any individual easy handles in any way - they still need to be closed individually, using the usual curl_easy_cleanup(3) way. The order of cleaning up should be: 1 - curl_multi_remove_handle(3) before any easy handles are cleaned up 2 - curl_easy_cleanup(3) can now be called independently since the easy handle is no longer connected to the multi handle 3 - curl_multi_cleanup(3) should be called when all easy handles are removed RETURN VALUE
CURLMcode type, general libcurl multi interface error code. SEE ALSO
curl_multi_init(3),curl_easy_cleanup(3),curl_easy_init(3) libcurl 7.9.5 1 March 2002 curl_multi_cleanup(3)

Check Out this Related Man Page

curl_multi_cleanup(3)						  libcurl Manual					     curl_multi_cleanup(3)

NAME
curl_multi_cleanup - close down a multi session SYNOPSIS
#include <curl/curl.h> CURLMcode curl_multi_cleanup( CURLM *multi_handle ); DESCRIPTION
Cleans up and removes a whole multi stack. It does not free or touch any individual easy handles in any way - they still need to be closed individually, using the usual curl_easy_cleanup(3) way. The order of cleaning up should be: 1 - curl_multi_remove_handle(3) before any easy handles are cleaned up 2 - curl_easy_cleanup(3) can now be called independently since the easy handle is no longer connected to the multi handle 3 - curl_multi_cleanup(3) should be called when all easy handles are removed RETURN VALUE
CURLMcode type, general libcurl multi interface error code. SEE ALSO
curl_multi_init(3),curl_easy_cleanup(3),curl_easy_init(3) libcurl 7.9.5 1 March 2002 curl_multi_cleanup(3)
Man Page

5 More Discussions You Might Find Interesting

1. AIX

Smt

How do you turn SMT(symm multi threading).I think that is what it's called.:) TIA Mike (2 Replies)
Discussion started by: mcastill66
2 Replies

2. Programming

libcurl multi interface problem

Hello, I'm trying to use libcurl multi interface to fetch several data in parallel. I would expect this to be faster than performing repeated fetches using the easy interface, but for some reason I can't obtain any speed up at all: using the multi interface actually turns out to be MUCH slower than... (2 Replies)
Discussion started by: clalfa
2 Replies

3. Shell Programming and Scripting

Extract values from multi lined url source

Hello, I want extract multi values from multi url source to a csv text. Thank you very much for help. my curl code : curl "http://www.web.com/cities//city.html Source code: div class="clear"></div> <table class="listing-details"> <tr> ... (1 Reply)
Discussion started by: hoo
1 Replies

4. Shell Programming and Scripting

Quick and easy way to comment out multi lined print statements

Is there a quick and easy way to comment out multi lined print statements? something like this? printf("3408 strings_line_tokens %s \n", strings_line_tokens); (6 Replies)
Discussion started by: cokedude
6 Replies

5. UNIX for Beginners Questions & Answers

Does UNIX support multi-Threading ?

Not just background process running ... but im looking if unix has any multi-threading concept like in Java, C# ... if not present, can you pls share the nearest feature in unix that is close to multi-threaded concept (3 Replies)
Discussion started by: i4ismail
3 Replies