kc3-lang/libevent/ChangeLog

Branch :


Log

Author Commit Date CI Message
d3fbe7fa 2009-04-21 18:47:53 Do not free the signal index unless it was at some point allocated svn:r1217
b7907a7b 2009-04-19 01:59:25 Note dns work in changelog and whatsnew svn:r1206
a98a512b 2009-04-17 23:12:34 Add a generic way for any bufferevent to make its callback deferred svn:r1197
e3d82497 2009-04-10 14:21:53 Don't allow internal events to starve lower-priority events. This is exceptionally important with multithreaded stuff, where we use an event to notify the base that other events have been made active. If the activated events have a prioirty number greater than that of the notification event, it will starve them, and that's no good. svn:r1149
ce146eb1 2009-04-10 05:43:45 Fix parsing of queries where the encoded queries contained \r, \n or + svn:r1148
72b6ffe8 2009-04-08 03:05:42 Prevent unsupported modifications to bufferevent_sock buffers. In particular, we don't allow adding any data to end front of inbuf (we do that when we read), or removing it from the front of outbuf (we drain data only when we write). svn:r1144
747331d1 2009-04-08 03:04:39 Add freeze support to evbuffers. From the documentation: Prevent calls that modify an evbuffer from succeeding. A buffer may frozen at the front, at the back, or at both the front and the back. If the front of a buffer is frozen, operations that drain data from the front of the buffer, or that prepend data to the buffer, will fail until it is unfrozen. If the back a buffer is frozen, operations that append data from the buffer will fail until it is unfrozen. We'll use this to ensure correctness on an evbuffer when we're waiting for an overlapped IO call to finish. svn:r1143
77c80b8d 2009-02-11 17:24:11 New bind-to option to allow DNS clients to bind to arbitrary ports for their outgoing addresses. svn:r1119
c7b2f8fd 2009-02-10 19:38:05 New function to abstract SO_REUSEADDR. svn:r1102
fdf69493 2009-01-27 06:05:38 sendfile/mmap and memory reference implementation for evbuffers svn:r1057
56ea4687 2009-01-22 02:33:38 Change the semantics of timeouts in conjunction with EV_PERSIST; timeouts in that case will now repeat until deleted. svn:r1032
309fc7c4 2009-01-21 07:51:25 New functions to provide sane threading callbacks with pthreads and win32 threading implementations. svn:r1031
f6eb1f81 2009-01-19 21:53:03 Change evbuffer_read implementation to split data across chunks, and use readv when available. This should make us use less space. svn:r1024
a5901991 2009-01-19 20:37:24 Use eventfd for main-thread notification where available (i.e., linux). svn:r1023
99db0e7f 2009-01-12 20:42:19 Add a new evbuffer_write_atmost() functino to write no more than a given number of bytes to an fd. svn:r993
135591ae 2009-01-02 20:46:35 Change the type of nameserver.address from u32 to sockaddr_storage, so that we can handle nameservers at IPv6 addresses. svn:r985
0d9d5cfe 2009-01-02 20:46:12 New functions in evutil to clone inet_pton and inet_ntop, with tests. Adapted from Tor code. svn:r983
02b2b4d1 2008-12-23 16:37:01 Restructure the event backends so that they do not need to keep track of events themselves, as a side effect multiple events can use the same fd or signal. svn:r972
f700566c 2008-12-19 21:31:43 Make the http connection close detection work properly with bufferevents and fix a potential memory leak associated with it svn:r963
dd731685 2008-12-03 20:09:13 Implement increased DSN-poisoning resistance via the 0x20 hack. svn:r958
4fa4a562 2008-11-27 19:57:48 fix a typo in setting the global event base; reported by lance svn:r953
4fe25cef 2008-11-27 19:27:33 Clear the timer cache when leaving the event loop; reported by Robin Haberkorn svn:r950
5792d42f 2008-11-16 23:22:14 Allow setting of local port for evhttp connections to support millions of connections from a single system; from Richard Jones svn:r948
50202d75 2008-11-15 05:27:23 only bind the socket on connect when a local address has been provided; reported by Ajejo Sanchez svn:r946
31cfe526 2008-10-30 19:38:31 clear the timer cache on entering event loop; reported by Victor Chang svn:r944
b3d6a569 2008-09-07 23:24:54 do not remove accept-encoding header in make request svn:r938
de069b99 2008-09-05 16:29:56 On win32, errno is not the last socket error. Worse, WSAGetLastError() is not the last socket error sometimes (i.e., EWOULDBLOCK). Also, strerror() does not handle winsock errors. Therefore, event_err() and event_warn() are completely wrong for windows socket errors. Fix that. svn:r936
a710d817 2008-08-30 23:19:49 Match the query in DNS replies to the query in the request; from Vsevolod Stakhov svn:r930
c968eb3e 2008-08-19 11:26:47 Fix a bug where headers arriving in multiple packets were not parsed; fix from Jiang Hong; test by me. svn:r928
cca2f8fa 2008-07-25 01:29:54 make event_add not change any state if it fails; repoted by Ian Bell svn:r923
1aa6826f 2008-07-25 01:18:40 fix off by one errors in devpoll; from Ian Bell svn:r921
e67a5ea9 2008-07-25 00:19:15 fix a problem with epoll and event_reinit; reported by Alexander Drozdov svn:r917
c4af6211 2008-07-11 16:11:16 forgot to add Alexander Drozdov as bug reporter in ChangeLog svn:r905
f7e61870 2008-07-11 15:49:04 support multiple events listening on the same signal; make signals regular events that go on the same event queue svn:r901
5512be01 2008-07-11 15:15:04 fix a bug where deleting signals with kqueue would delete subsequent adds svn:r899
df97fca9 2008-07-02 06:08:16 From Scott Lamb: * Allow the user to set the Content-Length: then stream a reply. This is useful for large requests of a known size. Added unit test. * Don't send a response body on HEAD requests, 1xx status codes, 204 status codes, or 304 status codes, as described in RFC 2616 section 4.3. (Doing otherwise causes problems - in particular, if a 304 has a chunked body (even an empty one), Safari 3.1.1 issues and then fails the next request on the connection with the non-sequitur error message "Too many HTTP redirects"!) * Specify a default Content-Type: when a response body is required, not when we have data in the response buffer by the time we make the header. (I.e., do this on evhttp_send_reply_start() for consistency.) * Don't expect a body in response to HEAD requests. svn:r898
409236a7 2008-07-02 04:39:09 detect CLOCK_MONOTONIC at runtime for evdns svn:r896
707f6784 2008-07-02 04:22:48 reject negative content-length headers svn:r894
cb7c3bd6 2008-06-29 01:30:06 support multi-line http headers; based on a patch from Moshe Litvin svn:r890
9998c0cb 2008-06-26 00:40:57 correct handling of trailing headers in chunked replies; from Scott Lamb. svn:r887
99a1063e 2008-06-21 02:21:25 support 64-bit integers in rpc structs svn:r856
4c56ba1c 2008-06-20 06:52:13 do not use SO_REUSEADDR when connecting svn:r854
2baaac7f 2008-06-14 17:50:36 Forward-port: Rename INPUT and OUTPUT to EVRPC_INPUT and EVRPC_OUTPUT, but keep the INPUT/OUTPUT aliases on non-win32 platforms to maintain backwards compatibility. svn:r852
a6ce520c 2008-06-12 14:43:35 allow min_heap_erase to be called on removed members; from liusifan svn:r849
344c2b56 2008-06-02 05:45:26 deliver partial data to request callbacks when chunked callback is set even if there is no chunking on the http level; allows cancelation of requests from within the chunked callback; from Scott Lamb. svn:r846
05965921 2008-05-31 14:37:31 Add new functions to access backends by their features and to query the features of a backend. svn:r842
39400e68 2008-05-30 16:56:34 Patch from Valery Kholodkov: support for edge-triggered events with epoll and kqueue. Changed from original patch: made test into a regression test, with explicit success/failure for edge-triggered and non-edge-triggered cases. Closes SF request 1968284. svn:r840
9ca7a3a3 2008-05-30 16:19:01 Resolve two conflicts. svn:r839
2deb3ce0 2008-05-29 01:39:43 simplify handling of environment variables for disabling backends; make event_get_supported_methods obey environment variables; this fixes make verify; problem reported by Scott Lamb. svn:r838
8b66f1bd 2008-05-17 02:14:17 constify struct timeval * svn:r836
134344b7 2008-05-16 01:55:40 Fix use of freed memory in event_reinit; pointed out by Peter Postma svn:r834
ec3956ba 2008-05-15 01:53:48 fix connection keep-alive behavior for HTTP/1.0 svn:r822
c6da86ff 2008-05-12 16:44:24 r19709@catbus: nickm | 2008-05-12 12:42:48 -0400 Possible fix for [1960723] snprintf and vsnprintf return values are wrong on win32 svn:r813
1080852e 2008-05-12 03:12:09 allow cancelation of user initiated http requests; this will allow cancelation of rpc requests eventually svn:r812
64ce7990 2008-05-08 23:57:31 r15555@tombo: nickm | 2008-05-08 19:56:51 -0400 fwd-port The IRIX compiler thinks #error means warn. Fix configure.in to tolerate this. svn:r801
a26442c5 2008-05-08 14:06:33 r19649@catbus: nickm | 2008-05-08 10:00:14 -0400 Replace gettimeofday() usage with a new evutil_gettimeofday(). This removes all previous need for win32-code/misc.[ch] svn:r792
85ed7133 2008-05-08 07:00:16 deprecate timeout_* event functions by moving them to event_compat.h svn:r791
de1c4392 2008-05-08 06:15:04 migrate evhttp to event2; accessors are still missing svn:r790
3f56e364 2008-05-08 05:56:20 event_base_new_with_config() and related methods svn:r789
3b2022ef 2008-05-08 05:33:15 provide an api for retrieving the supported event mechanisms svn:r788
68fecb7a 2008-05-07 20:29:11 r19633@catbus: nickm | 2008-05-07 16:10:00 -0400 Fix bug 1958901: stop overriding CPPFLAGS in test directory. svn:r783
d0c3644e 2008-05-05 15:45:30 r19599@catbus: nickm | 2008-05-05 11:26:18 -0400 Turn event_initialized() and friends into a function; add function equivalents for EVENT_FD and EVENT_SIGNAL. svn:r773
f2a81fbc 2008-05-05 07:17:05 add support for virtual http hosts; no tests yet svn:r771
1d30750b 2008-05-03 22:10:09 support for periodic timeouts svn:r762
8c750eaf 2008-05-03 21:37:33 separate signal events from io events svn:r760
45e6fb0d 2008-05-03 18:23:44 cache clock_gettime/gettimeofday values in base svn:r758
f04497e4 2008-05-03 03:05:28 introduce evbuffer_reserve_space() and evbuffer_commit_space() to make processing in filters more efficient svn:r757
becc89b7 2008-05-03 02:37:18 introduce evbuffer_contiguous_space() and use it in the zlib filter test svn:r756
5fbc7f0a 2008-05-02 16:28:25 r15439@tombo: nickm | 2008-05-02 12:28:08 -0400 use event_assign internall; switch uses of event_set to use event_assign instead. svn:r755
85c4904b 2008-05-01 01:45:00 allow connections to be removed from an rpc pool svn:r753
682adc44 2008-04-30 00:09:16 support input/output filters for bufferevents svn:r748
98dc98c5 2008-04-29 21:19:26 r15346@tombo: nickm | 2008-04-29 17:19:18 -0400 Remove the never-exported, never-used, never-threadsafe evhttp_hostportfile() svn:r746
9626a421 2008-04-29 18:11:23 r15341@tombo: nickm | 2008-04-29 14:09:50 -0400 Use internal implementation for evutil_timercmp() everywhere, to avoid bugs when the platform timercmp() has never heard of <= or >=. Also, replace timercmp() usage in min_heap.c with call to evutil_timercmp(). svn:r744
e44ef375 2008-04-29 04:52:50 convert evhttp_connection to use bufferevents svn:r742
9485ff9a 2008-04-27 20:40:56 introduce bufferevent_setcb and bufferevent_setfd to allow better manipulation of bufferevents svn:r737
dd183f7c 2008-04-27 00:32:10 provide bufferevent_input and bufferevent_output without requiring knowledge of the structure svn:r734
f6c40173 2008-04-26 05:13:56 fix a bug in which bufferevent_write_buffer would not schedule a write event svn:r733
3a17aeed 2008-04-26 01:00:44 fix a bug in buffrevent read water marks and add a test for them svn:r731
3278012f 2008-04-26 00:35:17 expose bufferevent_setwatermark via header files and fix high watermark on read svn:r729
89f63b20 2008-04-25 02:44:46 add bufferevent_read_buffer function svn:r728
94fb4d0a 2008-04-25 01:18:18 r15317@tombo: nickm | 2008-04-24 21:17:49 -0400 Add new functions to be more threadsafe (and structure-ignorant) than event_set. svn:r726
49868b61 2008-04-25 01:18:08 r15316@tombo: nickm | 2008-04-24 20:58:36 -0400 Rename internal memory management functions from event_malloc() etc to mm_malloc() etc. svn:r725
8d2a6160 2008-04-18 13:25:05 r15242@tombo: nickm | 2008-04-18 09:24:44 -0400 Make tagging code thread-safe, and fix a bug in encode_int_internal svn:r721
e688a88a 2008-04-17 17:55:35 r15216@tombo: nickm | 2008-04-17 13:55:05 -0400 Add new thread-safe interfaces to evdns functions. Needs review. svn:r714
fc41ffde 2008-04-17 15:50:28 r15214@tombo: nickm | 2008-04-17 11:47:10 -0400 Make name_from_addr() threadsafe in http.c svn:r713
f9f4d4fe 2008-04-11 20:02:50 r19309@catbus: nickm | 2008-04-11 16:02:07 -0400 Fix for epoll-on-linux bug (#1908866) where timeout values over (LONG_MAX-999)/HZ) (35 for me, or maybe 6 hours 50 min for some people, or maybe 3 hours 25 minutes for a special few) get treated as "wait forever". This actually deserves to be fixed in the kernel, but even if it is we will need to support Linux versions with this bug. svn:r709
44ceb945 2008-04-10 19:34:50 r19305@catbus: nickm | 2008-04-10 15:34:10 -0400 Fix bug 1938754: do not warn when epoll_create() fails with ENOSYS. svn:r706
0c843507 2008-04-10 19:25:11 r19301@catbus: nickm | 2008-04-10 14:54:46 -0400 Forward-port: Correct the documentation on evbuffer_add_[v]printf: Fix for bug 1914464. svn:r705
3ef1f504 2008-03-31 00:33:46 do not delete uninitialized timeout event in evdns svn:r697
8920ac4d 2008-03-30 21:06:33 make RPC replies use application/octet-stream svn:r694
ca42671a 2008-03-29 01:45:45 make event methods static so that they are not exported; from Andrei Nigmatulin svn:r692
c182baca 2008-03-10 03:17:20 switch thread support so that locks get allocated as they are needed. svn:r690
d5c15b2e 2008-03-03 03:36:51 make event_rpcgen.py generate code include event-config.h svn:r686
558de9b3 2008-03-02 21:18:33 Provide OpenSSL style support for multiple threads accessing the same event_base svn:r684
19dad166 2008-03-02 01:46:00 Do not free the kqop file descriptor in other processes, also allow it to be 0; from Andrei Nigmatulin svn:r682
69717730 2008-02-28 20:41:34 r18488@catbus: nickm | 2008-02-28 15:41:27 -0500 Define reentrant in evdns.c so that we get a declaration for strtok_r svn:r678
5c70ea4c 2008-02-28 02:47:43 improved code for evbuffer; avoids memcpy svn:r674
eb9b9580 2008-02-27 06:20:48 add some basic tests for DELETE/PUT; from Josh Rotenberg svn:r673
e7ad5493 2008-02-26 20:24:29 r14507@tombo: nickm | 2008-02-26 15:23:44 -0500 Patch from Tani Hosokawa: make some functions in http.c threadsafe. Also, note some functions in http.c that still are not threadsafe. svn:r671
7470ce52 2008-02-26 03:49:00 increase listen queue for http sockets to 128 svn:r669