• Home
  • Raw
  • Download

Lines Matching full:multi

4 Title: libcurl-multi
17 libcurl-multi - how to use the multi interface
21 This is an overview on how to use the libcurl multi interface in your C
27 All functions in the multi interface are prefixed with curl_multi.
31 The multi interface offers several abilities that the easy interface does not.
46 # ONE MULTI HANDLE MANY EASY HANDLES
48 To use the multi interface, you must first create a 'multi handle' with
52 With a multi handle and the multi interface you can do several simultaneous
57 There are two flavors of the multi interface, the select() oriented one and
64 you should add the easy handle to the multi handle with
65 curl_multi_add_handle(3). You can add more easy handles to a multi
68 Should you change your mind, the easy handle is again removed from the multi
69 stack using curl_multi_remove_handle(3). Once removed from the multi
74 Adding the easy handle to the multi handle does not start the transfer.
80 transfers in the multi stack that are ready to transfer anything. It may be
90 multi stack might need attention. Both these APIs allow for your program to
97 the transfers in the multi handles are done. 'done' does not mean
108 the multi stack. You need to first remove the easy handle with
113 When all transfers in the multi stack are done, close the multi handle with
118 If you want to reuse an easy handle that was added to the multi handle for
119 transfer, you must first remove it from the multi stack and then re-add it
132 When using this API, you add easy handles to the multi handle just as with the
133 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