cpprestsdk
cpprestsdk copied to clipboard
The C++ REST SDK is a Microsoft project for cloud-based client-server communication in native code using a modern asynchronous C++ API design. This project aims to help C++ developers connect to and i...
Solves this issue: https://github.com/microsoft/cpprestsdk/issues/1667
Does cpprest's http_listener have a mechanism to prevent DOS attacks?
This PR adds an option to disable the underlying sockets send-buffer by setting SO_SNDBUF to zero. During sending requests with larger bodies we encountered, especially on low bandwidth connections, that...
Hello all, I've got a problem with the http_client (cpprestsdk 2.9.0, downloaded from the at the beginning of February, running on Ubuntu 14.04.) making http_requests that have already timed out....
Does cpprest's http_listener support http request traffic limit? just like python flask, which have flask_limiter.
As you can see in https://github.com/microsoft/cpprestsdk/blob/master/Release/include/cpprest/http_msg.h http_request and http_response don't satisfy the rule of five and also have a non-trivial destructor. So no move will work on this types what...
Hi, I am testing this library comparing it to other similar C++ REST libraries available. I noticed that most of them offer a quick way of specifying the number of...
Using `http_client_winhttp` to establish a HTTPS connection over a application specific proxy configuration (adress and credentials) from a firewall restricted host (which can only connect through this proxy) is not...
If I ignore the exception it runs, but it's not able to receive any message, and when I stop it it throws another exception...
My program crashes when passing a REST request with special characters in the request header. My request is like PUT `xxxx:port/api/test` Header: name: äüöß" The call stack can be found...