kc3-lang/libevent

Branch :


Log

Author Commit Date CI Message
e415196a 2013-12-09 18:05:32 Initial CMake commit.
3d105414 2013-12-09 16:58:16 Fix non-C89 variable declaration. Microsofts C compiler does not support the C99 standard, so variables has to be declared at the start of a scope.
45eba6ff 2013-12-06 10:50:17 Rename flush_outdated_host_addresses to clear_host_addresses "flush" can imply writing something out to a file or connection before clearing it; "clear" always means "remove". It's also potentially misleading to say "outdated" here, since the function removes _all_ addresses regardless, not just certain outdated ones. Also, don't free the lock in this function. Also reindent the function.
aeb8d345 2013-12-06 10:37:53 Merge remote-tracking branch 'origin/pr/86'
f03d3535 2013-12-06 17:06:20 bug fix for issues #293 evdns_base_load_hosts doesn't remove outdated addresses As mentioned at https://sourceforge.net/p/levent/bugs/293/ created a small function "evdns_base_flush_outdated_host_addresses" which removes all the previous host addresses, if user wants to clean up the list of hosts can call and use this function. Defination of this function is part of another patch.
954d2f94 2013-12-06 16:53:16 bug fix for issues #293 evdns_base_load_hosts doesn't remove outdated adresses As mentioned at https://sourceforge.net/p/levent/bugs/293/ created a small function "evdns_base_flush_outdated_host_addresses" which removes all the previous requests of hosts , if user wants to clean up the list of hosts can call and use this function. Requires function declaration to be added in include/event2/dns.h Adding it in another patch for the same bug.
c11e7d91 2013-12-05 17:25:56 start writing a changelog for 2.1.4-(beta?)
735d838b 2013-12-05 17:14:54 Merge remote-tracking branch 'origin/patches-2.0'
f9284c3e 2013-12-05 17:14:05 update the 2.0 changelog
ccf432b9 2013-11-21 11:47:34 Try another doxygen tweak
6e67b510 2013-11-21 11:30:04 Small doxygen tweaks
a60632a1 2013-11-01 14:21:54 Merge remote-tracking branch 'origin/patches-2.0'
3b77d628 2013-11-01 14:20:25 Avoid redundant invocations of init_extension_functions for IOCP
515ed879 2013-10-14 11:22:40 Merge branch 'pr_81'
4dd500cd 2013-10-01 19:54:09 regress_http: add tests for evhttp_connection_get_addr()
0c7f0405 2013-10-01 19:12:13 http: implement new evhttp_connection_get_addr() api. Basically tcp final handshake looks like this: (C - client, S - server) ACK[C] - FIN/ACK[S] - FIN/ACK[S] - ACK [C] However there are servers, that didn't close connection like this, while it is still _considered_ as valid, and using libevent http layer we can do requests to such servers. Modified handshake: (C - client, S - server) ACK[C] - RST/ACK[S] - RST/ACK[S] And in this case we can't extract IP address from socket, because it is already closed, and getpeername() will return: "transport endpoint is not connected". So we need to store address that we are connecting to, after we know it, and that is what this patch do. I have reproduced it, however it have some extra packages. (I will try to fix it) https://github.com/azat/nfq-examples/blob/master/nfqnl_rst_fin.c
4464bd23 2013-10-10 16:10:50 Tweak indentation
206124a2 2013-10-10 16:09:45 Merge remote-tracking branch 'origin/pr/79'
97211377 2013-10-02 08:45:54 Merge pull request #80 from azat/tests-add-event-debug-logging-all regress_main: logging all if env EVENT_DEBUG_LOGGING_ALL isset
611e28b6 2013-10-01 19:54:57 regress_main: logging all if env EVENT_DEBUG_LOGGING_ALL isset
5a5acd9a 2013-09-28 20:03:28 add a http default content type option
a0931378 2013-09-19 10:48:27 Merge remote-tracking branch 'origin/patches-2.0'
e64a2b0b 2013-09-19 10:48:09 Fix another arc4random_buf-related warning
ee063766 2013-09-19 10:45:58 Merge remote-tracking branch 'origin/patches-2.0' Conflicts: evutil_rand.c
5cb3865a 2013-09-19 10:43:54 Fix a compiler warning when checking for arc4random_buf linker breakage. Patch by Ralph Castain.
0a051ef9 2013-09-16 12:29:48 Merge remote-tracking branch 'rosslagerwall/tree-build'
243386cc 2013-09-15 21:48:15 rpcgen: Generate regress.gen.[c,h] in build rather than src dir Currently an out-of-tree build will either write to the src dir or reuse the existing regress.gen.[c,h]. But if building from a read-only git tree (or if the git dir is cleaned), these files will not exist and the build fails. So write the files to the build dir. If the system does not have python, the regress.gen.[c,h] will be used from the src dir if they exist.
b04d13cd 2013-09-09 12:06:53 Merge remote-tracking branch 'origin/patches-2.0'
5eb17885 2013-09-03 14:46:47 Avoid racy bufferevent activation The evhttp_send_reply method invokes evhttp_write_buffer with a callback that may release the underlying request object and bufferevent upon completion. This cleanup callback is invoked by the underlying bufferevent's write callback. Improperly enabling write events before referencing the bufferevent could lead to use after free and memory corruption.
ebfd8a89 2013-09-04 14:25:11 Fix reinit of fds with EV_WRITE but not EV_READ. Bugfix on 2.1.1-alpha.
911abf3d 2013-08-19 10:11:21 Check CLOCK_MONOTONIC_* at runtime if needed. (We need this to avoid compile errors on cygwin. Fixes github issue 75.)
3807a30b 2013-08-19 10:05:14 Merge remote-tracking branch 'origin/patches-2.0' Conflicts: util-internal.h
c83efb80 2013-08-19 10:02:55 Merge remote-tracking branch 'public/20_memclear' into patches-2.0
f5ced88c 2013-08-19 09:52:29 Really remove RNG seeds from the stack
c149a1a5 2013-08-13 11:14:11 Merge remote-tracking branch 'origin/patches-2.0'
bb524712 2013-08-13 11:12:25 Oops; revert testing code
9695e9c1 2013-08-13 10:59:27 Avoid other RNG initialization FS reads when urandom file is specified
d44f91ad 2013-08-13 10:59:20 Finish a sentence
6171e1c2 2013-08-13 18:19:50 sample: drop uri_root from base_url in http-server. By default there is "0.0.0.0", and this address will work only from the same machine, and besides there is no need in uri_root in base_url, because it will be added automatically by browser.
1c06985a 2013-08-06 20:00:53 Add an assertion for another of the complaints from coverity. See 1b065d07df196
e193c959 2013-08-06 19:42:20 test_evutil_rtrim: add another missing check.
82b6956c 2013-08-06 19:39:35 Finalize tests: add a missing check
f314900d 2013-08-06 19:38:48 DNS tests: add a missing check
87cd6f01 2013-08-06 19:35:56 Fix some crash-on-fail cases in DNS regression tests Found by coverity.
eba4506a 2013-08-06 19:33:45 Add missing check to test_evbuffer_file_segment_add_cleanup_cb
77658846 2013-08-06 19:32:21 Fix a logic error in test_evbuffer_freeze
1104d0be 2013-08-06 19:31:26 Fix a (failure-only) null dereference in the unit tests
7080d55c 2013-08-06 19:28:53 Use void casts to suppress some "unchecked return value" warns
44b2491b 2013-08-06 19:23:36 sample/le-proxy: Fail more gracefully if opening listener fails
f22049e3 2013-08-06 19:17:08 Fix an unlikely but possible error case for http connections Found by coverity
69b5c647 2013-08-06 19:08:42 Move event_debug_note_teardown_ before mm_free. This isn't a bug, since only the pointer value of ev was used, but it's probably best not to tempt fate. Found by coverity.
1b065d07 2013-08-06 19:06:58 Add some assertions to please coverity. In event_process_active_single_queue, EVLIST_INIT must be set on any event that uses one of the event-only closures, and so "ev" will be set in those cases. But coverity's worried here (CIDs numerous). So instead, just add the assertions that should make it happy.
197abd8b 2013-08-06 17:51:21 Fix compilation
f391b003 2013-08-06 17:29:34 Merge remote-tracking branch 'origin/patches-2.0' Conflicts: arc4random.c
2bbb5d76 2013-08-06 17:06:23 Add evutil_secure_rng_set_urandom_device_file This experimental function is needed for some seccomp2 hackery to work, and should have no effect for systems that don't use it.
e639a9e1 2013-08-01 10:40:08 Remove an unreachable return statement in minheap-internal.h Found by Brian Utterback; see http://bugs.ntp.org/show_bug.cgi?id=2446
d4095146 2013-07-31 22:23:16 Avoid leaking segment mappings when offset is not a page multiple Found by Bob / Black Hole on the mailing list.
fbc323b7 2013-07-31 15:02:07 Add checks for evhttp_connection_get_server() in unit tests. They validate that this function behave as expected; that is, it returns NULL for outgoing connections, and returns the HTTP server object that received the connection for incoming ones.
a7f82a31 2013-07-24 20:50:05 Add evhttp_connection_get_server().
600c5865 2013-07-30 10:44:42 Merge remote-tracking branch 'ellzey/bev_ratelimit_get_token_cfg'
25c350b2 2013-07-29 09:10:24 Add Maxime Henrion to README
01a6ef78 2013-07-21 13:27:49 Merge remote-tracking branch 'origin/patches-2.0'
b8f59807 2013-07-20 14:02:49 libevent/win32_dealloc() : fix sizeof(pointer) vs sizeof(*pointer)
1c77fbb0 2013-07-11 16:26:43 Pass and return const for bufferevent_get_token_bucket_cfg
4b3d5af8 2013-07-11 12:31:39 Add function to fetch underlying ratelimit cfg bufferevent_get_token_bucket_cfg() will return the struct ev_token_bucket_cfg for a bufferevent if available.
c3260cb9 2013-07-11 06:57:16 Merge pull request #69 from makotokato/clang Don't use return since return type is void and build error occurs using ...
1ea1f26b 2013-07-10 11:02:43 We should return after arc4random_buf()
838161dc 2013-07-09 11:50:33 Don't use return since return type is void and build error occurs using clang
0fa107d8 2013-07-02 16:01:02 Added event_base_get_num_events()
90a8c539 2013-06-10 15:17:34 Merge remote-tracking branch 'origin/patches-2.0'
387e6b90 2013-06-10 15:16:13 Merge remote-tracking branch 'public/pr/79' into patches-2.0
36ab0721 2013-06-10 10:47:35 Merge branch '21_evdns_log_debug'
0b05aa65 2013-06-10 10:47:28 Merge remote-tracking branch 'origin/patches-2.0'
6e496961 2013-06-10 10:38:12 Document that arc4random is not a great cryptographic PRNG.
e35b5408 2013-06-10 10:33:56 When we seed from /proc/sys/kernel/random/uuid, count it as success Found by Joseph Spadavecchia
363388a0 2013-05-29 14:19:14 restore the comment
f8d7df85 2013-05-11 03:53:11 Fix SEGFAULT after evdns_base_resume if no nameservers installed. If there is no nameservers installed, using evdns_base_nameserver_ip_add(), than evdns_base_resume() will SEGFAULT, because of NULL dereference in evdns_requests_pump_waiting_queue() Conflicts: evdns.c
e1766a1b 2013-05-29 16:26:50 Actually use the log facility for reporting evdns problems. Fixes issue #63. Also refactors the evdns logging and log backend a bit, so that it wastes a little less code.
c307a250 2013-05-29 13:32:47 Merge remote-tracking branch 'origin/patches-2.0'
e826f19e 2013-05-29 13:30:56 Use windows vsnprintf fixup logic on all windows environments Previously I'd relied on mingw to provide a vsnprintf with a conformant return value. But it appears that some mingw environments don't do that.
0ac2ed65 2013-05-28 11:30:14 Merge remote-tracking branch 'origin/pr/62'
3dc2d8ab 2013-05-28 10:14:51 Remove a debugging assert that should not have been left in
dbc9cd4d 2013-05-23 16:31:53 Fix locking in bufferevent_get_options_().
31db8a02 2013-05-23 16:29:17 Fix a double close() bug in evhttp when the underlying bufferevent uses BEV_OPT_CLOSE_ON_FREE.
1f29b18f 2013-05-20 12:30:40 Avoid redundant syscall if making a socket cloexec twice I got the idea from Maxime's last patch.
42c03da9 2013-05-20 12:23:53 Avoid redundant syscall to make a nonblocking socket nonblocking
9b5a527f 2013-05-16 16:38:39 If evsel->del() fails, don't leave the evmap in an inconsistent state. This fixes assertion failures in cases where epoll() fails with EBADF -- the root cause for which is as of yet unknown. It seems something (OpenSSL?) is closing the file descriptor under our feet.
7e876df7 2013-05-13 19:50:30 Fix dns/leak_resume_send_err test. Because we don't cancel request, and want our callback to recieve DNS_ERR_SHUTDOWN, we use deferred callback, and there was - one extra malloc(), @see reply_schedule_callback() - and one missing free @see request_finished() (req->handle->pending_cb = 1) than we don't need to count in testleak_cleanup() So just decrement allocated_chunks to 2, like we already take care about it.
1cd9ff59 2013-05-13 19:20:42 Add tests for evdns_base_resume(). - leak_resume - leak_cancel_and_resume - leak_resume_send_err - leak_cancel_and_resume_send_err
14971a83 2013-05-11 03:53:11 Fix SEGFAULT after evdns_base_resume if no nameservers installed. If there is no nameservers installed, using evdns_base_nameserver_ip_add(), than evdns_base_resume() will SEGFAULT, because of NULL dereference in evdns_requests_pump_waiting_queue()
8ab612e3 2013-05-11 22:21:30 Whoops. It is gdi.lib, not gdi32.lib. (github issue #61)
d3d999a1 2013-05-10 20:22:56 Missed lock acquire/release in event_base_cancel_single_callback_() Call backtrace: ... event_queue_remove_active() event_callback_cancel_nolock_() event_base_cancel_single_callback_() event_base_free_() event_base_free() ... Fix for e9ebef83
5ba8ab76 2013-05-10 21:38:26 Fix test compilation with nmake: add the gdi.lib dependency ACK: efekty
ef820dbf 2013-05-07 10:03:28 Merge remote-tracking branch 'origin/patches-2.0'
5c710c03 2013-05-06 18:15:03 Checking request nameserver for NULL, before using it.
f8d80a28 2013-05-01 23:12:08 Bump version to 2.1.3-alpha-dev
85a40040 2013-05-01 13:37:57 Add regress_finalize to makefile.nmake
57cbfcd6 2013-05-01 10:28:42 Set a release date
5bc290e2 2013-05-01 10:04:08 Make http/connection_retry off-by-default
f2925d78 2013-04-30 22:57:25 Fix a windows compilation regression This is github issue #57; reported by "efekty". I assume the compiler is MSVC.