libasyncd icon indicating copy to clipboard operation
libasyncd copied to clipboard

Libasyncd is an embeddable event-based asynchronous Message/HTTP server framework for C/C++.

Results 14 libasyncd issues
Sort by recently updated
recently updated
newest added

Hello there! I'm currently trying to write multithreaded servers in C++ and decided to use Libasyncd, as it seemed simple and straightforward to work with. I already managed to write...

Hi, i have started 6 server threads which are running independantly, and there is a need for me to stop them at some instance of execution. while i was invoking...

Hey. I've been looking for a c/c++ library that can be used to make a https web server. How do I combine the SSL and http server examples so that...

It's always my great pleasure to know how it gets used. Please leave your comment if you're using libasyncd. Many thanks.

question

Looking at the source, it unconditionally includes `` and uses the (really nice) eventfd API. This means libasyncd will only run on Linux (and possibly some BSDs if they can...

I was starting to implement a simple HTTP application using `libsyncd` when I noticed currently there seems to be no mechanism to limit the size of requests. This can be...

Is it (somewhat easily) possible to have different callbacks registered on different ports (e.g.because the implement different protocols) without threads? And for this, one needs to (also) hook some buffer...

I am trying to see if I can use libasyncd as a library and write a high speed HTTPS server module allowing faster get/post/put operations. I am trying to see...

Hello, In all request the version sent by the server is (null). The output looks like this: ``` (null) 200 OK Body ``` The only way I found to solve...

Hello, I'm using this library in a multithreaded environment. When a new request arrives I add a new thread in a Thread pool. I managed to write from here using...