• 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 several simultaneous
59 There are two flavours of the multi interface, the select() oriented one and
66 you should add the easy handle to the multi handle with
67 \fIcurl_multi_add_handle(3)\fP. You can add more easy handles to a multi
70 Should you change your mind, the easy handle is again removed from the multi
71 stack using \fIcurl_multi_remove_handle(3)\fP. Once removed from the multi
76 Adding the easy handle to the multi handle does not start the transfer.
82 current transfers in the multi stack that are ready to transfer anything. It
92 multi stack might need attention. Both these APIs allow for your program to
99 the transfers in the multi handles are done. 'done' does not mean
111 the multi stack. You need to first remove the easy handle with
116 When all transfers in the multi stack are done, close the multi handle with
121 If you want to re-use an easy handle that was added to the multi handle for
122 transfer, you must first remove it from the multi stack and then re-add it
133 When using this API, you add easy handles to the multi handle just as with the
134 normal multi interface. Then you also set two callbacks with the
171 multi interface. While we certainly want and intend for these to get fixed in