Lines Matching full:easy
9 - libcurl-easy (3)
25 tutorial to programming with libcurl and the libcurl-easy(3) man page
26 for an overview of the libcurl easy interface.
32 The multi interface offers several abilities that the easy interface does not.
47 # ONE MULTI HANDLE MANY EASY HANDLES
54 transfers in parallel. Each single transfer is built up around an easy
55 handle. You create all the easy handles you need, and setup the appropriate
56 options for each easy handle using curl_easy_setopt(3).
63 When an easy handle is setup and ready for transfer, then instead of using
64 curl_easy_perform(3) like when using the easy interface for transfers,
65 you should add the easy handle to the multi handle with
66 curl_multi_add_handle(3). You can add more easy handles to a multi
69 Should you change your mind, the easy handle is again removed from the multi
71 handle, you can again use other easy interface functions like
75 Adding the easy handle to the multi handle does not start the transfer.
80 setup in the individual easy handles. It transfers data on all current
105 receive there includes an easy handle pointer which you may use to identify
106 which easy handle the information regards.
108 When a single transfer is completed, the easy handle is still left added to
109 the multi stack. You need to first remove the easy handle with
116 invoke separate curl_easy_cleanup(3) calls for every single easy handle
119 If you want to reuse an easy handle that was added to the multi handle for
133 When using this API, you add easy handles to the multi handle just as with the