David Moreno Montero
David Moreno Montero
Hi, it should be possible to use through another event loop. Check poller_libev.c and poller_libevent.c. Once a request handler is called it has to finish the processing of that request,...
Hi, of course I will consider merging! About that `if`, there is one mode that only serves one request and returns from onion_listen, that's the branch for that mode. But...
I think its a good idea. Another related option is just to use an external helper shell script that returns 0 if ok, or 1 if not ok. This script...
When onion executes a new process (an exec(3)) it should not leak the file descriptors of any connection, nor the listen fd. If it does there is risk that this...
It's long time I dont try to cross compile, but it looks it tries to use local opack. Can you try to install onion native locally, so that opack and...
Hi, sorry to check this pull request so late, but, can you provide a description here about whats the end goal of adding this feature? Also, I would prefer that...
As a fast fix I think we can add a flag to force PUT into mem instead of file. If we do this the default should be in mem, and...
I just did the first commit, please check and add comments here. I forgot to add to the commit message that I think that the final solution for this specific...
For mode ONION_ONE only one connection can be opened. Try with O_THREADED or O_DETACH_LISTEN at onion_new. On Fri, 23 Oct 2020 at 15:23, Edward Emelianov wrote: > I try to...
Hi, sorry to hear. Websockets support was not fully developed and suffer from problems. It should work with several threads, but it blocks the threads. A full rewrite of websockets...