• Home
  • Raw
  • Download

Lines Matching full:multi

23 .TH libcurl-multi 3 "19 Sep 2014" "libcurl" "libcurl multi interface"
25 libcurl-multi \- how to use the multi interface
27 This is an overview on how to use the libcurl multi interface in your C
33 All functions in the multi interface are prefixed with curl_multi.
35 The multi interface offers several abilities that the easy interface doesn't.
49 .SH "ONE MULTI HANDLE MANY EASY HANDLES"
50 To use the multi interface, you must first create a 'multi handle' with
54 With a multi handle and the multi interface you can do any amount of
60 There are two flavours of the multi interface, the select() oriented one and
67 you should add the easy handle to the multi handle with
68 \fIcurl_multi_add_handle(3)\fP. The multi handle is sometimes referred to as a
69 \'multi stack\' because of the fact that it may hold a large amount of easy
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
77 Adding the easy handle to the multi handle does not start the transfer.
83 current transfers in the multi stack that are ready to transfer anything. It
91 or poll() calls in order to get to know when the transfers in the multi stack
100 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, cleanup 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
172 multi interface. While we certainly want and intend for these to get fixed in