cpprestsdk icon indicating copy to clipboard operation
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...

Results 225 cpprestsdk issues
Sort by recently updated
recently updated
newest added

#0 __pthread_kill_implementation (no_tid=0, signo=5, threadid=140737289434688) at ./nptl/pthread_kill.c:44 #1 __pthread_kill_internal (signo=5, threadid=140737289434688) at ./nptl/pthread_kill.c:78 #2 __GI___pthread_kill (threadid=140737289434688, signo=signo@entry=5) at ./nptl/pthread_kill.c:89 #3 0x00007ffff7b81476 in __GI_raise (sig=5) at ../sysdeps/posix/raise.c:26 #4 0x00005555555feb40 in pplx::details::_ExceptionHolder::~_ExceptionHolder...

We have been using nmos-cpp library (taken from master branch on 04th September 2024) in our product which is Linux based and have been witnessing slow but steady increase in...

I write a test code to listen ipv6 address with uri "http://[::]:34962" on linux, but exception is thrown: resolve: Service not found [asio.addrinfo:-8] It seems there is issue in the...

This PR corrects misspellings identified by the [check-spelling action](https://github.com/marketplace/actions/check-spelling) (which is an evolution of the script I used ages ago when I first made a PR here...). The misspellings have...

The scenario: 1. Create and open two listeners on different ports with the http protocol. 2. Close and delete one of them. 3. Re-create and open the same listener, but...

_http_linux_server_ has a map _std::map m_listeners_, where new _hostport_listener_ are added with the _host+port_ key in the _pplx::task http_server_api::register_listener()_ function. But there is no deletion from this map in the...

Move delete data outside _WIN32 macro to prevent memory leaks on non-Windows platforms.

This extension is deprecated long time ago and being removed now. It was suggested by at least one maintainer that we should just remove its uses instead of creating a...

This callback enables the user to customise the socket options, such as adding `TCP keepalive`. It uses a similar style to the `http_client_config` for the `http_listener_config`. Here is an example...