Lines Matching full:multi
25 .TH libcurl-multi 3 "19 Sep 2014" "libcurl" "libcurl multi interface"
27 libcurl-multi \- how to use the multi interface
29 This is an overview on how to use the libcurl multi interface in your C
35 All functions in the multi interface are prefixed with curl_multi.
37 The multi interface offers several abilities that the easy interface does not.
51 .SH "ONE MULTI HANDLE MANY EASY HANDLES"
52 To use the multi interface, you must first create a 'multi handle' with
56 With a multi handle and the multi interface you can do several simultaneous
61 There are two flavors of the multi interface, the select() oriented one and
68 you should add the easy handle to the multi handle with
69 \fIcurl_multi_add_handle(3)\fP. You can add more easy handles to a multi
72 Should you change your mind, the easy handle is again removed from the multi
73 stack using \fIcurl_multi_remove_handle(3)\fP. Once removed from the multi
78 Adding the easy handle to the multi handle does not start the transfer.
84 current transfers in the multi stack that are ready to transfer anything. It
94 multi stack might need attention. Both these APIs allow for your program to
101 the transfers in the multi handles are done. 'done' does not mean
112 the multi stack. You need to first remove the easy handle with
117 When all transfers in the multi stack are done, close the multi handle with
122 If you want to re-use an easy handle that was added to the multi handle for
123 transfer, you must first remove it from the multi stack and then re-add it
134 When using this API, you add easy handles to the multi handle just as with the
135 normal multi interface. Then you also set two callbacks with the
173 multi interface. While we certainly want and intend for these to get fixed in