curlcpp
curlcpp copied to clipboard
An object oriented C++ wrapper for CURL (libcurl)
Hi, im trying to do something similar to the [recv_header.cpp](https://github.com/JosephP91/curlcpp/blob/master/test/recv_header.cpp) example but inside of a class. I have no issue with compile/link but when running my class i get memory...
I've installed your lib through NuGet (`curlcpp-vc140-static-32_64 1.0.2`) in VS2019, and tried to link with it my project (DLL) which uses CRT as a dynamic library. The build failed with...
When I used this library on Visual Studio Code, I faced with a problem with using auto complete words. I suggest replece **curlcpp-master/include/** directory to **curlcpp-master/include/curlcpp/** this will very help...
Hello. Im trying to build a project using curlcpp on windows (with makefile). I dont have the same issue on linux with -lcurl, only windows. I have libcurl_a.lib (static 7.79)...
I don't get the use of `NOEXCEPT` macro https://github.com/JosephP91/curlcpp/blob/0c2f06df81c6cb24fad11fd12d69a2dd19360285/include/curl_config.h#L25-L35 - `noexcept` is a mandatory language feature and a conforming C++11 compiler must support it - `` has been removed in...
Homebrew curl installs libs in `/usr/local/opt/curl/libs` by default, not to mess with system-wide libcurl. Can we add CMake suffix for it as we did with MacPorts?
IIUC the [documentation](https://curl.haxx.se/libcurl/c/curl_multi_info_read.html) every messages are returned only once and then removed from the internal handle. But `curl_multi::is_finished` consumes all the queue searching for a specific `easy handle`, discarding the...
Arguably, the most important piece of information returned by curl_multi_info_read is which exactly easy handle if done. This information, unfortunately, is not included in `curl_massage`, which makes it almost impossible...
While building a SHARED lib version of curlcpp, we noticed that the src/CMakeLists.txt file utilizes the CMake variable `${BUILD_SHARED_LIBS}` in a non-standard way. i.e., according to [their documentation](https://cmake.org/cmake/help/latest/variable/BUILD_SHARED_LIBS.html), this should...
i have search and try a lot of curl relative library. ur design is awesome! and i wander u can add libev module to this repo. the most quick and...