libevent
libevent copied to clipboard
Event notification library
Previously we had some issues with this because some workers was not capable to handle such load, but after adding one more element to build matrix some builds exceeds the...
can you expose evhttp_get_request to user? i have a listen thread and some work threads, work threads(IO thread) use evhttp_new create http server my listen thread send socket to work...
``` $ ctest -j100 --output-on-failure bufferevent/bufferevent_connect_fail: FAIL /root/libevent/test/regress_bufferevent.c:865: didn't fail? what 128 FAIL /root/libevent/test/regress_bufferevent.c:906: assert(test_ok == 1): 0 vs 1 FAIL /root/libevent/test/regress_bufferevent.c:839: assert(n_events_invoked == 1): 2 vs 1bufferevent/bufferevent_connect_fail_eventcb_defer: FAIL /root/libevent/test/regress_bufferevent.c:839:...
Hi, I'm using bufferevent_write() to forward bust of data, and libevent sending the cached data when socket is writable. But, While the system was overloading, the auto-write processing of bufferevent...
https://github.com/libevent/libevent/blob/bca26524fc4cd7a9e79d210c1079baaa7d29835d/bufferevent_ssl.c#L417 in here bufferevent_ssl is doing a evbuffer_drain without unfreezing and freezing the output . And further more, the consider_writing() return code isn't actually checked, which means if the buffer...
We use cache to make cmake runs faster, but this can break things, since this will preserve all cmake cached variables, and it may not be updated again. And this...
function: evutil_inet_pton_scope free(tmp_src); => mm_free(tmp_src);
In general, this wiki page should be automated - https://github.com/libevent/libevent/wiki/ReleaseChecklist Checklist: - [ ] automatic version bump (or at least a script) - [ ] automatic changelogs - [ ]...
(This is somewhat similar to #1155) I'd like to run production binaries in a (semi-) isolated test environment where /etc/resolv.conf might be missing/empty. However the very same binary must fail...
Hi all I am a http server. I want to send a message to a new address (not client address) in a callback. ``` struct evhttp_connection *conn; struct evhttp_request *req;...