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

Addresses the same problem as https://github.com/Corvusoft/restbed/issues/422 Test file, main.cpp ``` #include using namespace std; int main(int argc, char **argv) { return 0; } ``` Command line ``` g++ -DDEBUG=1 main.cpp...

…UILD_DEVEL_PACKAGE added (default=ON) These three new CMake build options control what kind of libraries will be build and what contents will be put into the resulting package: * BUILD_STATIC_LIBRARY controls...

… cross-compiling CMake toolchain files Both files have been modified so they are able to find the git submodules 'dependency/asio' resp. 'dependency/catch' even if a CMake toolchain file was used...

When I try to cross compile the restbed from x86_64 to aarch64, there is an error: ``` restbed/source/corvusoft/restbed/uri.cpp:125:9: error: narrowing conversion of ‘-1’ from ‘int’ to ‘unsigned char’ [-Wnarrowing] ```...

Hello, I tried to build restbed as stated in the README file using CMake after recursively cloning it from github. The step `make install` returns the following issue: `restbed/dependency/openssl/include/openssl/e_os2.h:13:11: fatal...

When attempting to compile any of the given examples in VS 2019, compilations fails with the following two errors: `1>I:\vcpkg\installed\x64-windows\include\corvusoft\restbed\request.hpp(172,20): error C4996: 'restbed::Http': HTTP client is deprecated; we will release...

Using code based on the example from https://github.com/Corvusoft/restbed/blob/master/documentation/example/WEB_SOCKET.md, `socket.close()` is called within a loop over the `sockets` map in `ping_handler()`. This causes `close_handler()` to be invoked. `close_handler()` removes the current...

documentation

In this `parse_request_line` function, use std::regex to extract request information. https://github.com/Corvusoft/restbed/blob/55009b43618c2d3a0e2afad5fd845eddd964816b/source/corvusoft/restbed/detail/service_impl.cpp#L699-L721 I tested g++10(libstdc++) and clang+=10(libc++) to compile. When the URI is too long, it will crash. I will put...

bug

Large messages, above 65535 characters, fail to be parsed from browser to server. However, they are successfully sent from server to browser.

bug

Hello Ben, since I updated the lib I had a lot of users who's connection was terminated ( 12030 ERROR_WINHTTP_CONNECTION_ERROR ) when a response was sent to them with a...

bug