Unix and Linux Discussions Tagged with easy |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
6 |
2,080 |
Shell Programming and Scripting |
|
|
|
10 |
3,807 |
Shell Programming and Scripting |
|
|
|
3 |
2,282 |
Shell Programming and Scripting |
|
|
|
0 |
1,749 |
UNIX and Linux RSS News |
|
|
|
0 |
1,164 |
Software Releases - RSS News |
|
|
|
7 |
4,085 |
Shell Programming and Scripting |
|
|
|
0 |
908 |
Software Releases - RSS News |
|
|
|
0 |
1,416 |
Oracle Updates (RSS) |
|
|
|
0 |
1,659 |
Oracle Updates (RSS) |
|
|
|
0 |
868 |
Software Releases - RSS News |
|
|
|
0 |
1,250 |
UNIX and Linux RSS News |
|
|
|
0 |
1,296 |
Software Releases - RSS News |
|
|
|
1 |
3,809 |
UNIX for Dummies Questions & Answers |
|
|
|
12 |
19,859 |
UNIX for Advanced & Expert Users |
|
|
|
4 |
3,719 |
UNIX for Dummies Questions & Answers |
|
|
|
6 |
11,162 |
Cybersecurity |
|
|
|
29 |
47,529 |
UNIX for Advanced & Expert Users |
|
|
|
3 |
4,035 |
IP Networking |
|
|
|
1 |
9,630 |
UNIX for Dummies Questions & Answers |
|
|
|
6 |
8,357 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
9,865 |
IP Networking |
|
|
|
7 |
9,587 |
UNIX for Dummies Questions & Answers |
|
|
|
5 |
4,515 |
IP Networking |
|
|
|
4 |
31,826 |
UNIX for Advanced & Expert Users |
|
|
|
3 |
7,508 |
UNIX for Dummies Questions & Answers |
|
|
|
6 |
15,032 |
IP Networking |
|
|
|
3 |
2,724 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
18,576 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
8,278 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
2,564 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
3,797 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
6,723 |
HP-UX |
|
|
|
3 |
2,397 |
UNIX for Dummies Questions & Answers |
|
|
|
5 |
2,823 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
3,557 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
3,555 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
4,198 |
UNIX for Dummies Questions & Answers |
|
|
|
7 |
5,660 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
6,751 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
3,461 |
UNIX for Dummies Questions & Answers |
curl_multi_add_handle(3) libcurl Manual curl_multi_add_handle(3)
NAME
curl_multi_add_handle - add an easy handle to a multi session
SYNOPSIS
#include <curl/curl.h>
CURLMcode curl_multi_add_handle(CURLM *multi_handle, CURL *easy_handle);
DESCRIPTION
Adds a standard easy handle to the multi stack. This function call will make this multi_handle control the specified easy_handle. Further-
more, libcurl now initiates the connection associated with the specified easy_handle.
When an easy handle has been added to a multi stack, you can not and you must not use curl_easy_perform(3) on that handle!
If the easy handle is not set to use a shared (CURLOPT_SHARE) or global DNS cache (CURLOPT_DNS_USE_GLOBAL_CACHE), it will be made to use
the DNS cache that is shared between all easy handles within the multi handle when curl_multi_add_handle(3) is called.
The easy handle will remain added until you remove it again with curl_multi_remove_handle(3). You should remove the easy handle from the
multi stack before you terminate first the easy handle and then the multi handle:
1 - curl_multi_remove_handle(3)
2 - curl_easy_cleanup(3)
3 - curl_multi_cleanup(3)
RETURN VALUE
CURLMcode type, general libcurl multi interface error code.
SEE ALSO
curl_multi_cleanup(3),curl_multi_init(3)
libcurl 7.9.5 4 March 2002 curl_multi_add_handle(3)