1libcurl(3) libcurl easy interface libcurl(3)
2
3
4
6 libcurl-easy - easy interface overview
7
9 When using libcurl's "easy" interface you init your session and get a
10 handle (often referred to as an "easy handle"), which you use as input
11 to the easy interface functions you use. Use curl_easy_init(3) to get
12 the handle.
13
14 You continue by setting all the options you want in the upcoming trans‐
15 fer, the most important among them is the URL itself (you can't trans‐
16 fer anything without a specified URL as you may have figured out your‐
17 self). You might want to set some callbacks as well that will be called
18 from the library when data is available etc. curl_easy_setopt(3) is
19 used for all this.
20
21 When all is setup, you tell libcurl to perform the transfer using
22 curl_easy_perform(3). It will then do the entire operation and won't
23 return until it is done (successfully or not).
24
25 After the transfer has been made, you can set new options and make
26 another transfer, or if you're done, cleanup the session by calling
27 curl_easy_cleanup(3). If you want persistent connections, you don't
28 cleanup immediately, but instead run ahead and perform other transfers
29 using the same easy handle.
30
31
32
33
34libcurl 7.10.7 12 Aug 2003 libcurl(3)