restbed icon indicating copy to clipboard operation
restbed copied to clipboard

Corvusoft's Restbed framework brings asynchronous RESTful functionality to C++14 applications.

Results 109 restbed issues
Sort by recently updated
recently updated
newest added

``` [ 11%] Linking CXX shared library librestbed.dylib /opt/local/bin/cmake -E cmake_link_script CMakeFiles/restbed-shared.dir/link.txt --verbose=ON /opt/local/bin/g++-mp-12 -pipe -I/opt/local/libexec/openssl3/include -Os -DNDEBUG -I/opt/local/libexec/openssl3/include -isystem/opt/local/include -D_GLIBCXX_USE_CXX11_ABI=0 -Wall -Wextra -Weffc++ -pedantic -Wno-unknown-pragmas -Wno-deprecated-declarations -Wno-non-virtual-dtor -DASIO_STANDALONE=YES -Wno-deprecated-declarations...

Hi, during the security audit of our REST-API, which uses the restbed library, a vulnerability regarding SSL/TLS occurred. The following CVEs are referenced: - CVE-2011-1473 - CVE-2011-5094 TLDR; An attacker...

build issue

in the installation phase called "Building CXX object test/unit/CMakeFiles/uri_unit_test_suite.dir/source/uri_suite.cpp.o" i have this error : ``` In file included from /usr/include/signal.h:328, from /home/mattia/Sviluppo/restbed/dependency/catch/single_include/catch2/catch.hpp:7955, from /home/mattia/Sviluppo/restbed/test/unit/source/uri_suite.cpp:10: /home/mattia/Sviluppo/restbed/dependency/catch/single_include/catch2/catch.hpp:10735:58: error: call to non-‘constexpr’ function...

Hello, How can I use restbed to make PayPal or stripe payments using their Rest API? Any articles or tutorials on the subject that talks about Payments and not some...

### In the current master branch (4.8) there are typos in the CMakeList.txt: ``` cmake -DBUILD_SSL=YES .. CMake Error at cmake/Findopenssl.cmake:22 (message): Failed to locate OpenSSL dependency. see restbed/dependency/openssl Call...

For example, if I want to send a file to the client, each time I call the read function, I will read 1024 bytes from the file. How to send...

Hi, I used the vcpkg and installed the library of the restbed[openssl]. My OS is Windows 10 x64 and I use Visual Studio 2019 Community Edition. I compile (Debug, x86)...

On current master, you cannot build restbed without exporting any restbed symbol. This is because `__declspec(dllimport)` or `__declspec(dllexport)` is always prepended. https://github.com/Corvusoft/restbed/blob/0c99284fba4f37a89de24972e48b8154abc5dc75/source/corvusoft/restbed/request.hpp#L24-L32 There is no path to avoid the `__declspec`...

enhancement
build issue

Hi, When I tried to build restbed with external libraries, I face the below problem. Please help me to fix this error. I am running Debian 12. $ cmake .....

Is there an way of parsing a MULTIPART message with the restbed API, or do I have to parse the individual parts and form parameters from the BODY myself?