• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

doc/H03-May-2022-986792

examples/H03-May-2022-2,5751,344

extras/H03-May-2022-356274

include/H07-Mar-2017-5,4512,801

src/curlpp/H07-Mar-2017-1,7891,187

.gitignoreH A D07-Mar-2017665 4843

.travis.ymlH A D07-Mar-20171.1 KiB5447

CNAMEH A D07-Mar-201714 11

Readme.mdH A D07-Mar-20172.2 KiB3522

_config.ymlH A D07-Mar-201727 11

appveyor.ymlH A D07-Mar-20171.4 KiB4640

Readme.md

1[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![Travis CI](https://img.shields.io/travis/jpbarrette/curlpp.svg)](https://travis-ci.org/jpbarrette/curlpp) [![AppVeyor CI](https://img.shields.io/appveyor/ci/jpbarrette/curlpp.svg)](https://ci.appveyor.com/project/jpbarrette/curlpp)
2
3# Description
4
5[cURLpp](http://www.curlpp.org) is a C++ wrapper for libcURL. libcURL is described as:
6
7<cite>
8a free and easy-to-use client-side URL transfer library, supporting FTP, FTPS, HTTP, HTTPS, GOPHER, TELNET, DICT, FILE and LDAP. libcurl supports HTTPS certificates, HTTP POST, HTTP PUT, FTP uploading, kerberos, HTTP form based upload, proxies, cookies, user+password authentication, file transfer resume, http proxy tunneling and more!
9</cite>
10
11<cite>
12libcurl is highly portable, it builds and works identically on numerous platforms, including Solaris, NetBSD, FreeBSD, OpenBSD, Darwin, HPUX, IRIX, AIX, Tru64, Linux, Windows, Amiga, OS/2, BeOs, Mac OS X, Ultrix, QNX, OpenVMS, RISC OS, Novell NetWare, DOS and more...
13</cite>
14
15<cite>
16libcurl is free, thread-safe, IPv6 compatible, feature rich, well supported and fast.
17</cite>
18
19First, I need to quote Daniel Stenberg, the maintener of libcURL:
20<cite>You can use libcURL instantly from within your C++ programs. You don't need cURLpp for that, cURLpp just adds an OO'ified layer that libcURL doesn't normally provide.</cite> It means that you need to be sure that you need, or want, cURLpp features. If not, I suggest to use directly the libcURL library. So, what are thoses features that cURLpp offers?
21
22* You can query handles for option values (version 0.5.x and newer only).
23* It use the C++ standard library structures instead of home made ones.
24* It is exception safe.
25* It is type safe.
26
27# Download
28
29Latest version is available on GitHub [here](https://github.com/jpbarrette/curlpp/releases/latest).
30
31# Documentation
32
33The programming guide is [here](https://github.com/jpbarrette/curlpp/tree/master/doc/guide.pdf). This guide is greatly inspired by the libcURL guide, that I strongly suggest to read. There's also some examples in the "[examples](http://github.com/jpbarrette/curlpp/tree/master/examples)/" source directory of cURLpp.
34
35