-
Notifications
You must be signed in to change notification settings - Fork 365
/
Copy pathREADME
38 lines (34 loc) · 1.78 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
configure.in is a good example to add curlpp to your project
Note that example 22 is contains the easiest and shorter examples of cURLpp
usage.
Example 00: Minimal example for fetching a site.
Example 01: This example is made to show you how you can use the Options.
Example 02: an upload example.
Example 03: verbose callback example.
Example 04: GetInfo example.
Example 05: Function functor for WriteFunction example.
Example 06: Method functor for WriteFunction example.
Example 07: Cookie interface example via getInfo.
Demonstrates usage of Infos::CookieList which example04 did not.
Example 08: verbose callback example, with exception safe handling.
Example 09: verbose callback example, with exception safe handling,
but without raiseException function.
Example 10: Binded function functor for WriteFunction example.
Example 11: Plain write function example.
Example 12: HTTP POST example.
Example 13: Simple Multi interface example.
Example 14: Multi interface example with info function example.
Example 15: Simple example for demonstrating the NoValueOptionTrait.
(SslEngineDefault)
Example 16: HTTP POST example with HTTP Authentification.
Example 17: Binded method functor for WriteFunction example.
Example 18: No longer available. This used to be a boost usage example, but it's no longer relevant since c++11.
Example 19: Multipart/formdata HTTP POST example.
Example 20: std::ostream usage.
Example 21: upload example with std::istream.
Example 22: Real easy and quick examples.
Example 23: Setting request options using iterators to custom container
of curlpp options.
Example 24: Binded method functor for DebugFunction example.
Example 25: Send e-mail over SMTP.
Example 26: Multi interface using multi poll/wait