HTTP and HTTPS library for C ++

I am looking for a cross-platform C ++ library that can serve HTTP requests and HTTPS requests. The library just needs to handle compressed file downloads via HTTP and HTTPS POST.

0
source share
4 answers

What about cpp-netlib ? It is encoded as part of Boost in the future and should be portable.

+5
source

I suggest using Wt . There are also C libraries such as GNU libmicrohttpd or Onion

+3
source

Have you watched QT?

You can use it in linux, windows, ios (I think)

http://doc.qt.nokia.com/stable/qtnetwork.html

+1
source

Also, for future searches and links, I made an embedded HTTP server library for C / C ++ with the name Libasyncd , a license for BSD, an asynchronous event -driven, supports HTTP / HTTPS.

0
source

Source: https://habr.com/ru/post/906007/


All Articles