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 CURLOPT_URL(3) is only option you really must set, as otherwise there
22 can be no transfer. Another commonly used option is CURLOPT_VERBOSE(3)
23 that will help you see what libcurl is doing under the hood, very use‐
24 ful when debugging for example. The curl_easy_setopt(3) man page has a
25 full index of the over 200 available options.
26
27 If you at any point would like to blank all previously set options for
28 a single easy handle, you can call curl_easy_reset(3) and you can also
29 make a clone of an easy handle (with all its set options) using
30 curl_easy_duphandle(3).
31
32 When all is setup, you tell libcurl to perform the transfer using
33 curl_easy_perform(3). It will then do the entire operation and won't
34 return until it is done (successfully or not).
35
36 After the transfer has been made, you can set new options and make
37 another transfer, or if you're done, cleanup the session by calling
38 curl_easy_cleanup(3). If you want persistent connections, you don't
39 cleanup immediately, but instead run ahead and perform other transfers
40 using the same easy handle.
41
43 curl_easy_init(3),curl_easy_cleanup(3),curl_easy_setopt(3), libcurl-
44 errors(3), libcurl-multi(3), libcurl(3)
45
46
47
48libcurl 7.66.0 February 03, 2016 libcurl(3)