Lines Matching refs:easy

8   - libcurl-easy (3)
152 libcurl first introduced the so called easy interface. All operations in the
153 easy interface are prefixed with 'curl_easy'. The easy interface lets you do
159 understand the easy interface first, so please continue reading for better
164 To use the easy interface, you must first create yourself an easy handle. You
165 need one handle for each easy session you want to perform. Basically, you
169 Get an easy handle with
173 It returns an easy handle. Using that you proceed to the next step: setting
184 single easy handle, you can call curl_easy_reset(3) and you can also
185 make a clone of an easy handle (with all its set options) using
313 Of course, first you either create an easy handle or you reuse one existing
623 Since all options on an easy handle are "sticky", they remain the same until
626 request. You force an easy handle to go back to GET by using the
638 - The easy handle must be created before building the multi-part.
644 - When complete, the multi-part must be bound to the easy handle using
957 Re-cycling the same easy handle several times when doing multiple requests is
961 connection alive and open. A subsequent request using the same easy handle to
980 Each easy handle attempts to keep the last few connections alive for a while
1046 think fit. Adding headers is this easy:
1308 /* Set these into the easy handle. */
1345 The easy interface as described in detail in this document is a synchronous
1365 of how to use the easy interface. The multi interface is simply a way to make
1366 multiple transfers at the same time by adding up multiple easy handles into
1369 You create the easy handles you want, one for each concurrent transfer, and
1371 multi handle with curl_multi_init(3) and add all those easy handles to
1385 makes it easy for you to wait and respond to actions on your own application's
1401 If you want to stop the transfer of one of the easy handles in the stack, you
1402 can use curl_multi_remove_handle(3) to remove individual easy
1403 handles. Remember that easy handles should be curl_easy_cleanup(3)ed.
1410 transfers. It then returns the CURLcode for each easy transfer, to allow you
1419 You can share some data between easy handles when the easy interface is used,
1422 When you add easy handles to a multi handle, these easy handles automatically
1423 share a lot of the data that otherwise would be kept on a per-easy handle
1424 basis when the easy interface is used.
1429 you are using the easy interface, you can still share these between specific
1430 easy handles by using the share interface, see libcurl-share(3).