Imported Upstream version 2.1.10
[platform/upstream/libevent.git] / ChangeLog
1 Changes in version 2.1.10-stable (26 May 2019)
2
3  This release contains mostly fixes (some evbuffer oddity, AF_UNIX handling in
4  http server, some UB fixes and others) but also some new functionality
5  (without ABI breakage as usual) and now dist archive can be used for building
6  on windows (getopt had been added into it).
7
8  Above you will find changelog for this particular release (but with some
9  trivial fixes pruned out from it - to make it a little bit more informative).
10
11  To view full changelog please use git:
12    git log --format='  o %s (%h %aN)' release-2.1.8-stable...release-2.1.9-beta
13
14  dist:
15   o Add getopt into dist archive (7042ff24 Azat Khuzhin)
16
17  functionality:
18   o evdns: add DNS_OPTION_NAMESERVERS_NO_DEFAULT/EVDNS_BASE_NAMESERVERS_NO_DEFAULT
19   (58e81106 Azat Khuzhin)
20   o Add support for EV_TIMEOUT to event_base_active_by_fd (3f893f0a John Ohl)
21
22  fixes:
23   o Merge branch 'evbuffer-fixes-806-v2' (2fea04b3 Azat Khuzhin)
24   o Merge branch 'issue-807-accept4-getnameinfo-AF_UNIX' (7c4da937, e2790a7f
25     Azat Khuzhin)
26   o kqueue: Avoid undefined behaviour. (e70e18e9 Tobias Stoeckmann)
27   o Prevent integer overflow in kq_build_changes_list. (43a55a23 Tobias Stoeckmann)
28   o evdns: fix lock/unlock mismatch in evdns_close_server_port() (54103883 zhuizhuhaomeng)
29   o Merge remote-tracking branch 'official/pr/804' -- Enforce limit of NSIG
30     signals (87fa93a8 Tobias Stoeckmann)
31   o Protect min_heap_push_ against integer overflow. (0b46bb8c Tobias Stoeckmann)
32   o le-proxy: initiate use of the Winsock DLL (2a1e1530 linxiaohui)
33   o Fix leaks in error path of the bufferevent_init_common_() (bb0f8fe7 Azat Khuzhin)
34   o buffer: make evbuffer_prepend() of zero-length array no-op (61fa7b7d Azat Khuzhin)
35   o Merge branch 'evbuffer-empty-chain-handling' (6a3dd717 Azat Khuzhin)
36   o Don't loose top error in SSL (3d1a7a1d Yury Korzhetsky)
37   o Remove needless check for arc4_seeded_ok (6602a97d Seong-Joong Kim)
38   o Merge pull request #769 from sungjungk/fix-return-handling (91084140 Nathan French)
39
40  build:
41   o Define `_GNU_SOURCE` properly/consistently per autoconf (00ba9fa2 Enji Cooper)
42   o signal: guard __cdecl definition with #ifdef (d89045a6 Azat Khuzhin)
43   o Link test/regress with event_core/event_extra over event (22380996 Azat Khuzhin)
44
45  tests:
46   o Use kill() over raise() for raising the signal (fixes osx 10.14 with
47     kqueue) (3db5296b, a45f6733 Azat Khuzhin)
48   o tinytest: implement per-test timeout (via alarm() under !win32 only)
49     (b64dbfb6, 75d7e1ff Azat Khuzhin)
50
51 Changes in version 2.1.9-beta (10 February 2019)
52
53  This changelog will differs from other releases in the next few clauses:
54  - contains only highlighted changes (so now it will not contains a lot of
55    patches that fixes some stuff in regression tests, typos, leaks fixes in
56    samples and so forth)
57  - no authors (since merge commits breaks them anyway, but AUTHORS sections in
58    README will be kept up to date)
59  - group name trimmed from commit subjects trimmed
60  - it's been 2 years since the previoius release, so it is pretty huge
61
62  And I think that this is more useful, so from now on it will always has the
63  same look (until there will too many objections of course).
64
65  To view full changelog please use git:
66    git log --format='  o %s (%h %aN)' release-2.1.8-stable...release-2.1.9-beta
67
68
69  dist archive:
70   o Add cmake rules into dist archive (bf3a67cf)
71   o Add missing print-winsock-errors.c into dist archive (822d6462)
72   o Include openssl-compat.h into dist archive (08658136)
73
74  core:
75   o Merge branch 'check-O_NONBLOCK-in-debug' (a39898f3, a8155c62)
76   o Merge branch 'event-ET-#636-v2' (ca4b6404)
77   o Fix visibility issues under (mostly on win32)
78     (349081e1g, 802be13ag, a1f28e2f)
79   o Define __EXT_POSIX2 for QNX (a2176f2c)
80   o Cleanup __func__ detection (b3af7bdd)
81   o Add convenience macros for user-triggered events (06ec5de6)
82   o Notify event base if there are no more events, so it can exit without delay (d9d1c09e)
83   o Fix base unlocking in event_del() if event_base_set() runned in another thread (4f0f40e3)
84   o If precise_time is false, we should not set EVENT_BASE_FLAG_PRECISE_TIMER (27dee54d)
85   o Fix race in access to ev_res from event loop with event_active() (43d92a6d)
86   o Return from event_del() after the last event callback termination (876c7ac7)
87
88  http:
89   o Merge branch 'http-EVHTTP_CON_READ_ON_WRITE_ERROR-fixes-v2' (eb7b472b)
90   o Preserve socket error from listen across closesocket cleanup (2ccd00a6)
91   o fix connection retries when there more then one request for connection (d30e7bba)
92   o improve error path for bufferevent_{setfd,enable,disable}() (a8cc449e)
93   o Fix conceivable UAF of the bufferevent in evhttp_connection_free() (6ac2ec25)
94   o Merge branch 'http-request-line-parsing' (cdcfbafe)
95   o Fix evhttp_connection_get_addr() fox incomming http connections (4215c003)
96   o fix leaks in evhttp_uriencode() (123362e9)
97   o CONNECT method only takes an authority (7d1ffe64)
98   o Allow bodies for GET/DELETE/OPTIONS/CONNECT (23eb38b9)
99   o Do not crash when evhttp_send_reply_start() is called after a timeout. (826f1134)
100   o Fix crashing http server when callback do not reply in place (5b40744d, b2581380)
101   o fix handling of close_notify (ssl) in http with openssl bufferevents (7e91622b)
102
103  evrpc:
104   o use *_new_with_arg() to match function prototype (a95cc9e3)
105   o avoid NULL dereference on request is not EVHTTP_REQ_POST (e05136c7)
106
107  regression tests:
108   o Merge branch 'TT_RETRIABLE' (6ea1ec68, f9b592aa)
109
110  bufferevent:
111   o Merge branch 'iocp-fixes' (6bfac964)
112   o Merge branch 'be-wm-overrun-v2' (3f692fff)
113   o bufferevent_socket_connect{,_hostname}() missing event callback and use ret code (1dde74ef)
114   o don't fail be_null_filter if bytes are copied (b92b0792)
115   o Call underlying bev ctrl GET_FD on filtered bufferevents (ebfac517)
116
117  bufferevent_openssl/openssl:
118   o Merge branch 'ssl_bufferevent_wm_filter-fix' (30020a35)
119   o be_openssl: avoid leaking of SSL structure (e86ccfe5)
120   o Fix build with LibreSSL 2.7 (894ca48a)
121   o Add missing includes into openssl-compat.h (01bc36c1)
122   o Explicitly call SSL_clear when reseting the fd. (29b7a516)
123   o Unbreak build with LibreSSL after openssl 1.1 support added (230af9f0)
124
125  samples:
126   o Merge branch 'sample-http-server' (b6309bcc)
127   o sample/https-client: use host SSL certificate store by default (5c0132f3)
128
129  listener:
130   o ipv6only socket bind support (ba148796)
131   o Merge branch 'listener-immediate-close' (df2ed13f)
132   o Merge branch 'evconnlistener-do-not-close-client-fd' (42e851bb)
133
134  evdns:
135   o evdns: handle NULL filename explicitly (0033f5cc)
136   o Merge branch 'evdns_getaddrinfo-race-fix' (3237d697)
137   o Generating evdns_base_config_windows_nameservers docs on all platforms (3bd2ce43)
138
139  utils:
140   o Merge branch 'evutil_found_ifaddr-dev' (b07e43e6)
141   o Avoid possible SEGVs in select() (in unit tests) (8818c86c)
142   o Port `event_rpcgen.py` and `test/check-dumpevents.py` to Python 3. (532a8cc3)
143
144  buffer:
145   o Fix assert() condition in evbuffer_drain() for IOCP (d6326104)
146   o fix incorrect unlock of the buffer mutex (for deferred callbacks) (2b4d127d)
147   o Fix wrong assert in evbuffer_drain() (9f4d0dce)
148
149  cmake:
150   o fix checking of devpoll backend (like in autotools, by devpoll.h existence) (7f161902)
151   o support static runtime (MSVC) (c8b3ec17, 61fb055a)
152   o do not build both (SHARED and STATIC) for MSVC/win32 (bc7f2fd9)
153   o introduce EVENT__LIBRARY_TYPE option (eb10a738)
154   o ensure windows dll's are installed as well as lib files (29590718)
155   o Fix generation of LibeventConfig.cmake for the installation tree (7fa08c4b)
156   o fix pkgconfig generation (copy-paste typo) (cc554d87)
157   o Merge branch 'cmake-missing-bits' (9806b126)
158   o Fix detection of timerfd_create() in CMake. (e50af331)
159   o Merge branch 'cmake-configure-fixes-v2' (a0bfe2c4)
160   o Do not add epoll_sub (syscall wrappers) for epoll in cmake (cea61de6)
161   o Fix RPATH for APPLE (45b1f379)
162
163  autotools:
164   o include win32 specific headers for socklen_t detection on win32/mingw (d7579fb9)
165   o Ignore evconfig-private.h for autotools (37423849)
166   o config.h can't be prefixed unconditionally (63a054f8)
167   o Merge branch 'pull-628' (7e56c8b2)
168   o Provide Makefile variables LIBEVENT_{CFLAGS,CPPFLAGS,LDFLAGS} (2f060c5f)
169   o confirm openssl is working before using (b39ccf8e)
170   o pass $(OPENSSL_INCS) for samples (FTBFS macOS) (c2495265)
171   o Add configure check for midipix (d433201e)
172   o Fix tests with detached builds (c46ff439)
173
174  build:
175   o Fix arc4random_addrandom() detecting and fallback (regression) (303d6d77)
176   o Merge branch 'win32-fixes' (ebd12e6d)
177   o Merge branch 'fix-openssl-linking' (e7bd9e03)
178   o Merge branch 'fix-struct-linger' (8567f2f5)
179
180  CI:
181   o travis-ci/appveyor now uses fast_finish+allow_failures
182     (5e97b6e6, dd472e7d, dfb5fc167)
183   o Merge branch 'travis-ci-osx-fixes' (9f02b39c)
184   o Merge branch 'win64-fixes' (aee0fcd5)
185
186
187 Changes in version 2.1.8-stable (22 January 2017)
188
189  Libevent 2.1.8-stable, it contains openssl fixes for resetting fd and using
190  bufferevent_openssl_filter_new(). vagrant fixes, some build fixes, increased
191  timeout for some tests (to reduce number of failures due to timing issues),
192  date in RFC1123 format and running tests in parallel.
193
194  There are highlighted changes above.
195
196  Build fixes:
197   o Fix _FILE_OFFSET_BITS redinition (solaris/autotools) (336f3b11 Azat Khuzhin)
198   o util-internal: fix __func__ redefinition (netbsd) (253e7fa9 Azat Khuzhin)
199   o Fix signedness differ for iov_base (solaris) (2c62062e Azat Khuzhin)
200   o evutil_time: include <unistd.h> when there is only sleep()/usleep() (3e75194c Azat Khuzhin)
201   o http: fix formatter for pritnf for req->ntoread (osx) (1cbf26f6 Azat Khuzhin)
202  Testing environment:
203   o Merge branch 'automake-tests-parallel-v4' (*includes ci bits also*) (59e217df Azat Khuzhin)
204  Vagrant env fixes:
205   o vagrant/netbsd: missing libtool (9c9be399 Azat Khuzhin)
206   o vagrant/netbsd: more reliable way of installing packages (36da6877 Azat Khuzhin)
207   o vagrant/osx: use make instead of gmake (there is no gmake) (f7c70aef Azat Khuzhin)
208   o vagrant: add centos box (ca591c5b Azat Khuzhin)
209  Tests:
210   o test/dns: replace servname since solaris does not have "http" (d6bafbbe Azat Khuzhin)
211   o test/thread: netbsd is too slow, increase timeout for conditions_simple (3c7422fc Azat Khuzhin)
212   o test/dns: run async resolving after sync one (to avoid timeouts) (07862531 Azat Khuzhin)
213   o test/http: turn off some tests that based on backlog filling (falky) (26f416c1 Azat Khuzhin)
214  Bugfixes:
215   o Merge branch 'openssl-filter-fixes-v4' (83e0f43b Azat Khuzhin)
216   o Merge branch 'date-rfc1123' (68def435,4798de6c,4545807d Azat Khuzhin)
217   o Merge branch 'be-openssl-fd-reset-fix-v2' (86fa0070,32adf434 Azat Khuzhin)
218   o Merge branch 'openssl-1.1-init-fixes-v2' (18a161f0 Azat Khuzhin)
219   o Fix incorrect MIME type (23f9a20e johnsonlee)
220  Trivial fixes:
221  Documentation updates:
222   o Update README.md (3821cca1 Breaker)
223
224
225 Changes in version 2.1.7-rc (2 Novemer 2016)
226
227  Libevent 2.1.7-rc contains openssl 1.1 support, build fixes, CI improvements
228  and plus Vagrantfile for testing under multiple OS'es.
229
230
231  Continious Integration:
232   o Use coveralls.io via travis (9ac000c Azat Khuzhin)
233   o travis-ci: use container-based infrastructure (7e12e96 Azat Khuzhin)
234   o travis-ci/osx: fix compiling/linking openssl libraries (9d2f8d4 Azat Khuzhin)
235   o travis-ci: use gcc-5 (fixes osx|gcc failures) (d7ceae5 Azat Khuzhin)
236   o Testing with vagrant for 6 OS and cmake+autoconf (9585338 Azat Khuzhin)
237   o travis-ci/osx: install lcov (e4e099b Azat Khuzhin)
238
239  Build Improvements/Fixes:
240   o Fix cmake -DEVENT__COVERAGE=ON (40fbffc Azat Khuzhin)
241   o autogen.sh: learn about gmake (9376ac4 Azat Khuzhin)
242   o autogen.sh: remove all autoconf/automake caches, if any (69cce25 Azat Khuzhin)
243   o cmake: fix finding python2, and check that it is really 2 (3453c08 Azat Khuzhin)
244   o cmake: fix CheckFunctionExistsEx/CheckPrototypeDefinition (CMP0054) (43b69b2 Azat Khuzhin)
245   o cmake: cleanup (dc624ad Zonr Chang)
246   o cmake/win32: fix running regress, but fixing finding python2 interpreter (bcb990a Azat Khuzhin)
247   o cmake: use PYTHON_EXECUTABLE to find python2 (a4d044c Azat Khuzhin)
248   o Merge branch 'force-disable-clockgettime' (83c7cdf Azat Khuzhin)
249
250  Code Improvements (core)
251   o use ev_uint16_t instead of unsigned short for port (e983712 Thomas Bernard)
252   o Merge branch 'contrib-guide-v2' (b9c5077 Azat Khuzhin)
253   o poll: Prevent libevent from spinning if POLLNVAL occurs (675974c Tim Hentenaar)
254
255  Testing:
256   o test/regress: cover a polling of invalid fd (cb0df5c Tim Hentenaar)
257
258  Code Improvements (bufferevent_openssl)
259   o Make it build using OpenSSL 1.1.0 (3e9e0a0 Kurt Roeckx)
260   o Don't call BIO_number_{read|written} on NULL BIOs. (6702da1 Adam Langley)
261   o Switch from a 512 to 2048-bit RSA key. (f9803a6 Adam Langley)
262
263  Trivial fixes:
264   o Ignore temporary configure files (8fb08ae Azat Khuzhin)
265   o README.md: fix typo: ar -> are (2361616 Simone Basso)
266   o be: just a simple mistake, reinclude the <errno.h> (7521664 Seven)
267
268 Changes in version 2.1.6-beta (4 July 2016)
269
270  Libevent 2.1.6-beta contains mostly bug fixes (evbuffers, evthread, evdns,
271  bufferevents, core, http, samples), improvements but mostly to fix some
272  possible issues (EVHTTP_CON_LINGERING_CLOSE), a lot of new unit tests and new
273  appveyor integration.
274
275  Security Fixes (utils)
276    o evutil_parse_sockaddr_port(): fix buffer overflow (329acc1 Azat Khuzhin)
277
278  Security Fixes (evdns)
279    o evdns: name_parse(): fix remote stack overread (96f64a0 Azat Khuzhin)
280    o evdns: fix searching empty hostnames (ec65c42 Azat Khuzhin)
281
282  New APIs (evdns)
283    o New function to get address for nameserver. (537177d Nick Mathewson)
284
285  New APIs (bufferevents)
286    o expose bufferevent_incref/decref (with fewer modifications) (1ed6718 Mark Ellzey)
287
288  New APIs (internal)
289    o evdns: export cancel via callbacks in util (like async lib core/extra issues) (8cbe65d Azat Khuzhin)
290
291  New APIs/Improvements (http)
292    o http: take EVHTTP_CON_LINGERING_CLOSE into account for "Expect: 100-Continue" (ac448a7 Azat Khuzhin)
293    o http: lingering close (like nginx have) for entity-too-large (9fde518 Azat Khuzhin)
294    o http: read server response even after server closed the connection (680742e Azat Khuzhin)
295    o http: export evhttp_connection_set_family() (714fc70 Azat Khuzhin)
296    o http: reuse connected address only with EVHTTP_CON_REUSE_CONNECTED_ADDR (a50f5f0 Azat Khuzhin)
297    o http: use IP address that we got before (if any) during retrying (54c887d Azat Khuzhin)
298
299  Bugfixes (core)
300    o Fix getaddrinfo under solaris (for multiprotocol case) (40730ae Azat Khuzhin)
301    o Check for Mac OS X 10.4 kqueue bug properly (df6f99e Mark Mentovai)
302    o event_reinit: make signals works after fork() without evsig_add() (88640aa Nicholas Marriott)
303    o event_reinit: always re-init signal's socketpair (ad0c237 Nicholas Marriott)
304    o Free event queues even for recursive finalizers (7c8d015 Azat Khuzhin)
305    o Fix checking for make_base_notifiable() (f337296 Azat Khuzhin)
306    o Set correct socklen for PF_INET6 sockaddr len (3499ad9 Mark Ellzey)
307    o Fix garbage value in socketpair util function, stdint? (043ae74 Mark Ellzey)
308    o fix the return value of event_deferred_cb_schedule_ (38cef64 Greg Hazel)
309    o event_free_debug_globals_locks(): disable lock debugging (e5c87d1 Azat Khuzhin)
310    o event: call event_disable_debug_mode() in libevent_global_shutdown() (941faae Azat Khuzhin)
311    o ht-internal: don't reset hth_table_length explicitly in name_##HT_CLEAR (597c7b2 Azat Khuzhin)
312
313  Bugfixes (evthread)
314    o evthread: fix evthread_setup_global_lock_() for debug-lock with a real-lock case (e4556fc Azat Khuzhin)
315    o evthread: evthreadimpl_disable_lock_debugging_() for libevent_global_shutdown() (ccc5593 Azat Khuzhin)
316
317  Bugfixes (evdns)
318    o evdns: avoid double-free in evdns_base_free() for probing requests (4db15e0 Azat Khuzhin)
319    o evdns: evdns_base_free(): fix UAF of evdns_base with @fail_requests (00313c5 Azat Khuzhin)
320    o evdns: evdns_base_free(): free requests before namservers (14f84bb Azat Khuzhin)
321    o evdns: fix randomize-case by make case-insensitive as required (9c238de Azat Khuzhin)
322
323  Bugfixes (bufferevents)
324    o be_sock: handle readv() returns ECONNREFUSED (freebsd 9.2) (3189eb0 Azat Khuzhin)
325    o be_filter: avoid data stuck under active watermarks (b627ad8 Eduardo Panisset)
326    o Fix bufferevent_pair to properly set BEV_EVENT_{READING,WRITING} on flush. (2851889 David Paschich)
327    o be_openssl: clear all pending errors before SSL_*() calls (38e0f4a Azat Khuzhin)
328    o be_sock: cancel in-progress dns requests (86dfd2c Azat Khuzhin)
329    o be_sock: unfreeze buffers on fd changing (255525d Azat Khuzhin)
330    o be_sock: bufferevent_socket_connect_hostname(): make it thread-safe (809bb39 Azat Khuzhin)
331    o be_openssl: don't call do_write() directly from outbuf_cb (da52933 Azat Khuzhin)
332    o be_openssl: use bufferevent_enable() instead of bufferevent_add_event_() (0c66d32 Azat Khuzhin)
333    o be_openssl: don't add events during bev creation (like be_sock) (f4b6284 Azat Khuzhin)
334    o Fix lock leak in be_pair_flush() if flush type is BEV_NORMAL (f45d39d Bill Vaughan)
335    o be_openssl: don't use *_auto() in do_handshake() we can't have fd == -1 there (877280d Azat Khuzhin)
336    o be_openssl: don't call set_open_callbacks() if fd == -1 (e8a2da9 Azat Khuzhin)
337    o be_openssl: get rid off hackish "fd_is_set", to fix some corner cases (40b0379 Azat Khuzhin)
338    o be: we don't need to use getpeername() we we have conn_address (2c271e2 Azat Khuzhin)
339    o Call underlying bev ctrl SET_FD on filtered bufferevents (c2aa7dc Mark Ellzey)
340    o be_pair: release shared lock with the latest of bufferevent_pair (92a359e Azat Khuzhin)
341
342  Bugfixes (http)
343    o [Issue #313] set method to ASCII "NULL" if evhttp_method() returns NULL (17cc636 Mark Ellzey)
344    o evhttp_have_expect(): fix -Wlogical-not-parentheses (24b5214 Azat Khuzhin)
345    o http: set fd to -1 unconditioally, to avoid leaking of DNS requests (7a4b472 Azat Khuzhin)
346    o http: avoid leaking of fd in evhttp_connection_free() (f0e1341 Azat Khuzhin)
347    o http: get fd from be layer during connection reset (4a53c54 Azat Khuzhin)
348    o http: fix EVHTTP_CON_READ_ON_WRITE_ERROR when it doesn't supported by OS (2ff164a Azat Khuzhin)
349    o http: do not do function calls under EVUTIL_ASSERT() to fix NDEBUG builds (7c89999 Azat Khuzhin)
350    o http: fix leaking of response_code_line (8f18a62 Azat Khuzhin)
351    o http: fix "Expect: 100-continue" client side (0b46b39 Azat Khuzhin)
352    o http: fix conflicts EVHTTP_CON_AUTOFREE and EVHTTP_CON_REUSE_CONNECTED_ADDR (4dc0979 Azat Khuzhin)
353    o http: avoid epoll_ctl() on already closed fd (triggers by http/chunk_out) (ab3bc69 Azat Khuzhin)
354    o http: install timeout for read too during connect for ssl (040000d Azat Khuzhin)
355    o http: fix evhttp_request_own() by checking EVHTTP_USER_OWNED in more cases (b0d3964 Azat Khuzhin)
356    o http: fix detecting EOF without write (7ed02ac Azat Khuzhin)
357    o evhttp: Fix failure to send all output data for POST/PUT requests (24eea0d John Ohl)
358    o Fix evhttp_uriencode() regression. (c6b1ec1 Mark Ellzey)
359    o removed unused vars (e94250c Mark Ellzey)
360    o pointer overflow checks for evhttp_uriencode (72afe4c Zonr Chang)
361
362  Bugfixes (evbuffers)
363    o buffer: fix overflow check in evbuffer_expand_singlechain() (a3f4ccd Azat Khuzhin)
364    o buffer: evbuffer_add_buffer(): clean empty chains from destination buffer (26fd932 Azat Khuzhin)
365    o Fix n_add_for_cb in evbuffer_prepend() in case of new buffer required (0abd039 Azat Khuzhin)
366    o be_filter: actually disable output_filter during processing output (c031215 Simon Perreault)
367    o evbuffer_add: Use last_with_datap if set, not last. (a8769ef Marcus Sundberg)
368    o EVBUFFER_PTR_SET -> EVBUFFER_PTR_ADD (8674e4f jer-gentoo)
369
370  Bugfixes (evconnlistener)
371    o listener: unlock lev on error in listener_read_cb() (2a71b33 Azat Khuzhin)
372    o Fix potential fd leak in listener_read_cb() (a695a72 Mark Ellzey)
373
374  Testing
375    o tests: use waitpid(..., WNOWAIT) to fix failing of main/fork under solaris (43eb56c Azat Khuzhin)
376    o test: replace sleeping with syncing pair in main/fork (16d220c Azat Khuzhin)
377    o test/http: do not run tests that based on backlog filling (freebsd) (500b6b7 Azat Khuzhin)
378    o test/bufferevent/iocp: fix test name for "bufferevent_connect_fail_eventcb" (4410e9d Azat Khuzhin)
379    o test/ssl: use send()/recv()/EVUTIL_ERR_RW_RETRIABLE()/EVUTIL_SOCKET_ERROR() to fix win32 (a9e8cd6 Azat Khuzhin)
380    o test/https_basic: increase timeout for complete write (fixes win32) (d5a2f2f Azat Khuzhin)
381    o test: fix building with --disable-thread-support under win32 (a487706 Azat Khuzhin)
382    o test/buffer: evbuffer_add_buffer() with empty chains (a272bc4 Azat Khuzhin)
383    o test/buffer: evbuffer_remove_buffer() with empty chains (prepend) (f0cfa14 Azat Khuzhin)
384    o test/buffer: evbuffer_remove_buffer() with empty chains (evbuffer_add_buffer()) (2880ce6 Azat Khuzhin)
385    o test/buffer: cover evbuffer_expand() for overflow (48dab7a Azat Khuzhin)
386    o test/be_filter: creating test case for data stuck with active watermarks (766194b Eduardo Panisset)
387    o test/http: avoid using conditionals with omitted operands (fixes VS2015) (2a4bf29 Azat Khuzhin)
388    o test/http: don't mix declarations and code (fixes -Wdeclaration-after-statement) (aabf1c2 Azat Khuzhin)
389    o test/buffer: fix leak in test_evbuffer_prepend() (c08d90b Azat Khuzhin)
390    o test/buffer: avoid errors with --no-fork (reinitialize static vars) (e7d1e39 Azat Khuzhin)
391    o test/buffer: cover n_add_for_cb when evbuffer_prepend() need to allocate buffer (e77ff41 Azat Khuzhin)
392    o test/tinytest_macros: add new one tt_nstr_op() (bd19a28 Azat Khuzhin)
393    o test/bufferevent: check that output_filter disabled during processing output (ae28812 Azat Khuzhin)
394    o test/listener: regression for missing unlock in listener_read_cb() (7d85651 Azat Khuzhin)
395    o test/regress: add tests for evbuffer_add() breakage on empty last chain (d5ee739 Marcus Sundberg)
396    o test/http: fix running some tests sequential (with --no-fork) (bddad71 Azat Khuzhin)
397    o test/http: localize evhttp server structure (cbc3209 Azat Khuzhin)
398    o test/dns: regression for empty hostname (d7348ba Azat Khuzhin)
399    o test/http: fix SERVER_TIMEOUT tests under win32 (d49a658 Azat Khuzhin)
400    o test/http: add a helper for creating timedout/failed request (376f107 Azat Khuzhin)
401    o test/http: adopt for C90 (mixed code and declarations) (d02a285 Azat Khuzhin)
402    o test/http: cover NS timed out during request cancellations separatelly (0c343af Azat Khuzhin)
403    o test/http: request cancellation with resolving/{conn,write}-timeouts in progress (334340d Azat Khuzhin)
404    o test/http: exit from the loop in the errorcb to wait cancellation (927ab33 Azat Khuzhin)
405    o regress_clean_dnsserver(): reset global port vars (351207f Azat Khuzhin)
406    o test/http: read_on_write_error: fix it for win32 (3b58169 Azat Khuzhin)
407    o test/http: separate coverage for EVHTTP_CON_READ_ON_WRITE_ERROR (5c2b4c1 Azat Khuzhin)
408    o test/http: cover "Expect: 100-continue" client-server interaction (31d8116 Azat Khuzhin)
409    o test/http: *lingering tests shouldn't have "Expect: 100-continue" (ed469ab Azat Khuzhin)
410    o test: use EVUTIL_SHUT_WR (04fc82f Azat Khuzhin)
411    o test/http: avoid huge stack allocations to fix win32 builds (3166765 Azat Khuzhin)
412    o test: http/lingering_close: cover EVHTTP_SERVER_LINGERING_CLOSE (e122ca1 Azat Khuzhin)
413    o test: http/non_lingering_close: cover ~EVHTTP_SERVER_LINGERING_CLOSE (f41e1b0 Azat Khuzhin)
414    o test: http/*: update expected HTTP codes for body exceeds `max_body_size` (addf2b9 Azat Khuzhin)
415    o test: http/data_length_constrains: set EVHTTP_CON_READ_ON_WRITE_ERROR (d38a723 Azat Khuzhin)
416    o test: increase buffer size for http/data_length_constraints to trigger EPIPE (0792e1e Azat Khuzhin)
417    o test/tinytest_demo: include <windows.h> for win32 to fix tdm-gcc (f062bbe Azat Khuzhin)
418    o test/regress: cover event_del() waiting mechanism (5b58b70 Azat Khuzhin)
419    o test/regress: cover existing signal callbacks and fork() + event_reinit() (ceddc60 Azat Khuzhin)
420    o test/regress: cover signals after fork() + event_reinit() (b075b81 Azat Khuzhin)
421    o test/regress: main/fork: rewrite assertions by just removing event in callback (088d8b3 Azat Khuzhin)
422    o test/dns: check exit code of evdns_getaddrinfo() (0b9d432 Azat Khuzhin)
423    o test/dns: cover evdns_getaddrinfo() and evdns_base_free() with @fail_requests (4ad3483 Azat Khuzhin)
424    o test/dns: cover @fail_requests for evdns_base_free() (d6c6fb4 Azat Khuzhin)
425    o test/dns: more graceful coverage of @fail_requests (123d372 Azat Khuzhin)
426    o test/ssl: cover busy-loop (i.e. {read,write}-blocked-on-{write,read} stuff) (da0ea7a Azat Khuzhin)
427    o test/http: write_during_read for https (23c77b6 Azat Khuzhin)
428    o test/http: connection_fail for https (7ea26f7 Azat Khuzhin)
429    o test/http: stream_out for https (ac04968 Azat Khuzhin)
430    o test/http: chunk_out for https (a71ffb9 Azat Khuzhin)
431    o test/regress: fix ssl-less builds (need to make this prettier) (3160716 Azat Khuzhin)
432    o test/http: allow dirty shutdown for ssl to fix https_incomplete (1ede326 Azat Khuzhin)
433    o test/http: https basic (59714b4 Azat Khuzhin)
434    o test/http: incomplete{,_timeout} for https (615490d Azat Khuzhin)
435    o test/http: add simplest test for http/https/https_dirty_shutdown (93b19dc Azat Khuzhin)
436    o test/http: https: retry coverage (7c2d24a Azat Khuzhin)
437    o test/http: https server support (plus some helpers) (a7088ad Azat Khuzhin)
438    o test/http: more sanity checks (a27c53c Azat Khuzhin)
439    o test/ssl: export getkey()/getcert()/get_ssl_ctx()/init_ssl() for https (0c4c387 Azat Khuzhin)
440    o test/regress_be: basic coverage bufferevent_flush() for pair/sock layers (ad52602 Azat Khuzhin)
441    o test/regress_be: socket_filter_inactive: check bufferevent after creation (f8081af Azat Khuzhin)
442    o test/regress_be: cover finalizers from inactive to active queue (337684b Azat Khuzhin)
443    o test/regress_buffer: fix clang compilation warnings (d8fd4c0 Azat Khuzhin)
444    o test/regress_http: fix compilation warnings (-Wmissing-field-initializers) (cd422e0 Azat Khuzhin)
445    o test/regress_dns: fix compilation warnings (-Wmissing-field-initializers/for) (f55db98 Azat Khuzhin)
446    o tests/regress_dns: cover that randomize-case works case-insensitive (1e8bfbc Azat Khuzhin)
447    o test: fix bufferevent/bufferevent_pair_release_lock in debug mode (3f749e9 Azat Khuzhin)
448    o test: fix bufferevent/bufferevent_pair_release_lock for freebsd (79f9ace Azat Khuzhin)
449    o test/regress_be: bufferevent_enable() shouldn't call eventcb by it's own (a0f308d Azat Khuzhin)
450    o test/regress_be: introduce fake_listener_create() (37dc9e0 Azat Khuzhin)
451    o test/regress_http: cover evhttp_request_own() (6f6fa0d Azat Khuzhin)
452    o test/regress_http: cover write during read (3d15aeb Azat Khuzhin)
453    o test/regress_http: verify that closecb will be called without multiple write (4be6c70 Azat Khuzhin)
454    o test/regress: fix bufferevent_pair_release_lock with EVENT_DEBUG_MODE (6ea6655 Azat Khuzhin)
455    o test/regress_ssl: check events fd/pending after timeout triggered (cdafdf0 Azat Khuzhin)
456    o test/regress_ssl: cover case when server didn't up (failed with timeout) (74845f1 Azat Khuzhin)
457    o test/regress_ssl: covert that we can't change fd with underlying (df507af Azat Khuzhin)
458    o test/regress_ssl: cover that events (read/write) at finish not pending (762edb4 Azat Khuzhin)
459    o test/regress_ssl: cover fd manipulations (b78a829 Azat Khuzhin)
460    o test/regress_ssl: convert open_ssl_bufevs() to mask (46bba73 Azat Khuzhin)
461    o test/regress_ssl: convert client/server to mask too (3455991 Azat Khuzhin)
462    o test/regress_ssl: cover "allow_dirty_shutdown" (0430327 Azat Khuzhin)
463    o test/regress_ssl: convert regress_bufferevent_openssl() to bitmask (342e116 Azat Khuzhin)
464    o tests/regress_ssl: drop duplicated assert (25e56fd Azat Khuzhin)
465    o test/regress_http: initialize "dns_base" to avoid reading trash (9f0bff3 Azat Khuzhin)
466    o test/http: cover retrying with saved conn_address by shutting down dns server (f4874d8 Azat Khuzhin)
467    o be_pair/regress: cover use of shared lock (lock/unlock/free) (a558fcd Azat Khuzhin)
468    o regress_dns: drop hack for event_debug_map_HT_GROW in leak tests (3540a19 Azat Khuzhin)
469
470  Sample code
471    o Fix memory leak in signal-test.c (666db91 basavesh.as)
472    o sample/hello-world: exAmple, not eXMple (2d3cd35 kirillDanshin)
473    o dns-example: allow to set ns from args (df19a97 Azat Khuzhin)
474    o dns-example: convert to getopt() (32f8592 Azat Khuzhin)
475    o http-connect: make it win32 compilable (1bf7595 Azat Khuzhin)
476    o sample/https-client: allow to change path to ca-certificates (fdf713a Azat Khuzhin)
477    o sample/https-client: check for ERR_remove_thread_state() existence (c4e9d9b Azat Khuzhin)
478    o sample/https-client: replace ERR_remove_state() by ERR_remove_thread_state() (77ad68a Azat Khuzhin)
479    o sample/https-client: add -timeout option (4637aa8 Azat Khuzhin)
480    o sample/https-client: don't try to free uninitialized SSL (f3d7ff5 Azat Khuzhin)
481    o sample/https-client: graceful exit with freeing memory (to make valgrind happy) (24a1f25 Azat Khuzhin)
482    o https-client: correctly handle URLs with no path (like "https://host:port") (29a0482 Andrey Skriabin)
483    o sample/http-connect: don't use assert() to make it work with NDEBUG (6dc71e7 Azat Khuzhin)
484    o sample/http-connect: made it compatible with C90 (f976d43 Azat Khuzhin)
485    o sample: add HTTP CONNECT tunnelling example using libevent http layer (1d34498 Azat Khuzhin)
486    o Update dns-example. (620ff24 Mark Ellzey)
487
488  Documentation
489    o Update README.md (b8ec70c Mark Ellzey)
490    o Update README.md (80faee9 Mark Ellzey)
491    o Update README.md (ad4a897 Mark Ellzey)
492    o Update README.md (a2b2e1e Mark Ellzey)
493    o Update README.md (0dfa5dc Mark Ellzey)
494
495  Code Improvements (evthread)
496    o evthread: add evthread_get_{lock,condition}_callbacks() helpers (c0b34f6 Azat Khuzhin)
497
498  Code Improvements (core)
499    o util: make @sa const for evutil_socket_connect_() (a8d32c2 Azat Khuzhin)
500
501  Code Improvements (http)
502    o http: assert's that evbuffer_drain() success on connection reset (2185e63 Azat Khuzhin)
503    o http: introduce evhttp_request_free_() helper (22061ac Azat Khuzhin)
504    o http: introduce evhttp_is_request_connection_close() helper (6540da3 Azat Khuzhin)
505
506  Code Improvements (bufferevents)
507    o be_sock: bufferevent_socket_set_conn_address(): assert instead of silent no-op (0ab88c2 Azat Khuzhin)
508    o be_sock: sanity check in bufferevent_socket_set_conn_address() (eedbeff Azat Khuzhin)
509    o be: replace sockaddr_storage with sockaddr_in6 for conn_address (3889612 Azat Khuzhin)
510    o be: replace conn_address by full struct instead of pointer (e5615aa Azat Khuzhin)
511    o bufferevent: move conn_address out from http into bufferevent (8bb3842 Azat Khuzhin)
512    o be: make @sa const for bufferevent_socket_connect() (dc33c78 Azat Khuzhin)
513
514  Cleanups (core)
515    o Refactoring conditional directives that break parts of statements. (4b41eeb lzmths)
516    o epoll: introduce PRINT_CHANGES() macro to avoid copy-pasting (a1b142b Azat Khuzhin)
517    o tab (6e7a580 Greg Hazel)
518
519  Cleanups (evbuffers)
520    o buffer_compat: fix comment -- we have EVBUFFER_EOL_ANY not EOL_STYLE_ANY (575ff67 Azat Khuzhin)
521
522  Cleanups (bufferevents)
523    o be_sock: evutil_getaddrinfo_async_() always return 0 (dbff101 Azat Khuzhin)
524    o be_sock: drop be_sock_add() macro (useless and debug unfriendly) (fad5fe2 Azat Khuzhin)
525    o be: introduce bufferevent_generic_adj_existing_timeouts_() (3c1f58f Azat Khuzhin)
526    o be: add_event: use evutil_timerisset() (a96b73b Azat Khuzhin)
527    o be_openssl: introduce be_openssl_auto_fd() helper (2a8a711 Azat Khuzhin)
528    o be_openssl: introduce set_open_callbacks_auto() (510da71 Azat Khuzhin)
529
530  Cleanups (http)
531    o http: make fallback for EVHTTP_CON_READ_ON_WRITE_ERROR more cleaner (d405492 Azat Khuzhin)
532    o http: coding style issue (365f181 Azat Khuzhin)
533
534  Cleanups (evdns)
535    o evnds: inline TEST_NAME macro to make debuggin easier (0c615f4 Azat Khuzhin)
536
537  Portability Fixes
538    o [#372] check for errno.h (3031617 Mark Ellzey)
539    o Fixed Unicode issue in error messages. (e8b7895 Mattes D)
540    o Assume that ke_udata is an integer type on CloudABI. (5602e45 Ed Schouten)
541    o Add missing include of <netinet/in.h>. (b2c68bc Ed Schouten)
542    o Include <sys/ioctl.h>, <sys/resource.h> and <sys/wait.h> optionally. (c1404b5 Ed Schouten)
543    o Test against SO_REUSEADDR (along with _WIN32). (ce1776c Ed Schouten)
544    o Always define missing TAILQ functions from sys/queue.h (2828bdb Christopher Wiley)
545    o Don't use BSD u_* types. (fd36647 Ed Schouten)
546    o Remove BSD-ism: TIMEVAL_TO_TIMESPEC(). (193c7de Ed Schouten)
547    o be: include all variations of headers for sockaddr_in6 struct (c212291 Azat Khuzhin)
548    o be: fix sockaddr_in6 type definition for win32 (c42bc6b Azat Khuzhin)
549
550  Continious Integration:
551    o travis: split long lines, and make it cleaner (685a6a1 Azat Khuzhin)
552    o travis: fix autotools on osx by reinstalling libtool (088ea5e Azat Khuzhin)
553    o appveyor/autotools: link with openssl by passing LDFLAGS/CFLAGS (6fcfa25 Azat Khuzhin)
554    o appveyor: image already had openssl installed (4634b85 Azat Khuzhin)
555    o appveyor: check -DUNICODE -D_UNICODE according to ReleaseChecklist (cmake only) (e9acc44 Azat Khuzhin)
556    o appveyor: ignore failure of mingw-get (1810857 Azat Khuzhin)
557    o appveyor: drop shallow_clone, since we use tags for detecting version in cmake (ac90133 Azat Khuzhin)
558    o appveyor: support cmake & autotools using build matrix (like travis-ci has) (8f95015 Azat Khuzhin)
559    o travis-ci/osx: relink gcc/g++ instead of clang (481481d Azat Khuzhin)
560    o travis-ci: enable multi-os mode (osx, linux) (79917e4 Azat Khuzhin)
561    o travis-ci: increase matrix (--disable-foo) (59649f7 Azat Khuzhin)
562    o travis-ci: adjust alignment (c8be339 Azat Khuzhin)
563    o travis: add builds without debug mode into matrix (3e56da2 Azat Khuzhin)
564    o test: run regress with EVENT_DEBUG_MODE=1 and without (cf2cf2a Azat Khuzhin)
565    o Update travis config for status updates (37453ab Mark Ellzey)
566    o Use autotools for appveyor until cmake is fixed. (1cc2e29 Mark Ellzey)
567    o Fix the link for appveyor OpenSSL installer (WIN32) (107d565 Mark Ellzey)
568    o Forgot to install OpenSSL for appveyor (26164a5 Joakim Söderberg)
569    o Add support for appveyor.com windows CI (5f89c37 Joakim Söderberg)
570
571  Build Improvements/Fixes:
572    o evutil: mark ai_find_protocol() static (prototype-less) (5a157c8 Azat Khuzhin)
573    o cmake/solaris: set CMAKE_REQUIRED_LIBRARIES to fix functions detections (dc95823 Azat Khuzhin)
574    o cmake/solaris: fix building (link with socket,nsl) (050bfc7 Azat Khuzhin)
575    o cmake: check for ZLIB_INCLUDE_DIR, since we can have only library without headers (c4dfb93 Azat Khuzhin)
576    o autotools/win32: fix searching ssl library (671a24f Azat Khuzhin)
577    o cmake/win32: do not compile regress_thread on -DEVENT__DISABLE_THREAD_SUPPORT=ON (de0c196 Azat Khuzhin)
578    o cmake/win32: do not compile evthread_win32 on -DEVENT__DISABLE_THREAD_SUPPORT=ON (ecb0ec8 Azat Khuzhin)
579    o cmake: fix -DEVENT__ENABLE_VERBOSE_DEBUG (typo on -DUSE_DEBUG) (e35f224 Azat Khuzhin)
580    o cmake: do not use stderr for notifications/version-info (38716c6 Azat Khuzhin)
581    o autoconf: fix --disable-thread-support build under win32 (bb09535 Azat Khuzhin)
582    o buffer: don't mix code and declarations (8892f4c Azat Khuzhin)
583    o Update gitignore file to ignore cscope gen'ed files (0aaa4fb Neeraj Badlani)
584    o For non GCC/clang on OSX the -Wno-deprecated-declarations may not be valid (b5ca365 Rainer Keller)
585    o automake: define serial-tests only if automake have this option (61179de Azat Khuzhin)
586    o test/automake: don't use paralell test harness (since automake 1.12) (44d755e Azat Khuzhin)
587    o Ignore all pkgconfig generated stuff (ce38993 Azat Khuzhin)
588    o libevent_core and libevent_extra also deserve a pkgconfig file (b8d7c62 Jan Heylen)
589    o Ignore verify_tests.bat (win32 version) (0f2de10 Azat Khuzhin)
590    o cmake: require 3.1 only for win32 to make it work under ubunty precise (87f7238 Azat Khuzhin)
591    o cmake: require at least 3.1 for target_sources() (c46ead5 Azat Khuzhin)
592    o cmake: fix adding of compiler flags, and now it will (36588e1 Azat Khuzhin)
593    o Replace -Wswitch-enum with -Wswitch, and add it into cmake rules too (f29f59e Azat Khuzhin)
594    o test/regress_ssl: Fix compile problems for win32 (73d0360 Trond Norbye)
595    o util: fix "%zu" format on TDM-gcc/MinGW-w64 (79b69d8 Azat Khuzhin)
596    o cmake: don't define EVENT__NEED_DLLIMPORT always (fixes VS2013 static build) (49bd790 Azat Khuzhin)
597    o Add missing return statement to del_wait_thread so libevent can build. (4f778ab Nick Mathewson)
598    o cmake: fix building dns-example under win32 (missing getopt) (a1609a8 Azat Khuzhin)
599    o visibility: align it to make it more readable (bb6b53d Azat Khuzhin)
600    o cmake: Fix detection of ssize_t/SSIZE_T (7707f6b Azat Khuzhin)
601    o Ignore more configure stuff (configure.lineno) (8d34302 Azat Khuzhin)
602    o Fixed issue with cmake version generation (d56efd9 Mark Ellzey)
603    o Cmake is now officially working. (7f9646d Mark Ellzey)
604    o More cmake updates, lot's of missing definitions (49a5381 Mark Ellzey)
605    o CMake syntax fixes fo .in files (6aad23d Mark Ellzey)
606    o Revert "The Windows socket type is defined as SOCKET." (a264da8 Mark Ellzey)
607    o CMAKE CMAKE CMAKE CLEANUPS (a9db46a Mark Ellzey)
608    o Lot's of cmake updates (8b228e2 Mark Ellzey)
609    o Provide a mechanism for building the library on Windows with different compiler flags. Add a batch file that builds it for the M[DT][d] options and performs a hunt and gather of the different output libraries. (ded8086 billsegall)
610    o The Windows socket type is defined as SOCKET. (c9e6c3d billsegall)
611    o autotools: fix getservbyname() detection (959a4c2 Azat Khuzhin)
612    o Add missing <string.h> for openssl_hostname_validation module (3316a21 Azat Khuzhin)
613    o make test/regress_ssl.c compile without warnings (9f02a44 Thomas Bernard)
614    o test/regress_be: drop debug __asm__(int3) to fix arm build (8240379 Azat Khuzhin)
615    o event_debug_created_threadable_ctx_: fix compilation without debug mode (a068f2e Azat Khuzhin)
616    o Add a prototype for event_disable_debug_mode() (bfcedee Sebastian Hahn)
617    o http: eliminate warning about "socklen" in evhttp_connection_connect_() (dfad1a4 Azat Khuzhin)
618    o Updated gitignore (1dbb55d Mark Ellzey)
619    o Update bench_httpclient.c (cb96931 Seungmo Koo)
620    o *fix: bench_httpclient to support win32 (4e9325e zeliard)
621    o Commented out a WIN32 threading / timing test for now (e84e269 Mark Ellzey)
622    o Fix mixed declarations and code (forbidden by ISO C90) (0c7f217 Thomas Bernard)
623    o Fix "function declaration isn’t a prototype" (746d2c5 Thomas Bernard)
624    o This fixes a bug introduced in 27bd9faf498b91923296cc91643e03ec4055c230 (19ba454 Joakim Söderberg)
625    o changed strtotimeval signature as per #211 (bdbc823 Xiao Bao Clark)
626    o Added cmake-generated files to ignore list. (6c12bfe Matyas Dolak)
627    o Ignore `make dist` generated files (8a2c6c7 Azat Khuzhin)
628
629   Debugging
630    o Debug mode option to error on evthread init AFTER other event calls. (dcfb19a Mark Ellzey)
631
632
633
634 Changes in version 2.1.5-beta (5 January 2015)
635
636  Security Fixes (evbuffers)
637    o Avoid integer overflow bugs in evbuffer_add() and related functions.  See CVE-2014-6272 advisory for more information. (d49bc0e88b81a5812116074dc007f1db0ca1eecd)
638
639  New APIs (evconnlistener)
640    o Provide support for SO_REUSEPORT through LEV_OPT_REUSABLE_PORT (b625361 Maciej Soltysiak)
641
642  Bugfixes (core)
643     o Fix use-after-free error in EV_CLOSURE_EVENT callback (3cc0eac John Ohl)
644     o Fix race caused by event_active (3c7d6fc vjpai)
645
646  Bugfixes (evbuffer)
647    o Fix evbuffer_peek() with len==-1 and start_at non-NULL. (ba59923)
648    o Consistently check for failure from evbuffer_pullup() (60f8f72)
649    o Fix evbuffer_peek() with len==-1 and start_at non-NULL. (fb7e76a)
650
651  Bugfixes (windows, IOCP)
652    o be async: avoid double close() (f133b86 Azat Khuzhin)
653
654  Bugfixes (bufferevents)
655    o Fix issue #127, double free for filterevents that use BEV_OPT_CLOSE_ON_FREE (2c82aa0 John Ohl)
656    o make bufferevent_getwatermark api more robust (a21e510 ufo2243)
657    o [Bugfix] fix bufferevent setwatermark suspend_read (b34e4ac ufo2243)
658    o bufferevent_openssl: reset fd_is_set when setfd with -1 is called (3da84c2 Azat Khuzhin)
659    o Fix compilation for older OpenSSL versions. (5c7282f Joakim Soderberg)
660
661  New APIs (evhttp)
662    o Add evhttp_connection_set_family() to set addrinfo->family for DNS requests (12c29b0 Azat Khuzhin)
663    o Implement interface that provides the ability to have an outbound evhttp_connection free itself once all requests have completed (2b9ec4c,10fe4f John Ohl)
664
665  New APIs (core)
666    o Implement new/free for struct evutil_monotonic_timer and export monotonic time functions (f2645f8 Andrea Shepard)
667
668  Bugfixes (evdns)
669    o Load hosts file on Windows. (a0b247c Vilmos Nebehaj)
670    o Don't truncate hosts file path on Windows. (d0dc861 Vilmos Nebehaj)
671    o Fix a crash in evdns related to shutting down evdns (9f39c88,e8fe749)
672    o evdns: avoid read-after-free in evdns_request_timeout_callback() (61262a0 Azat Khuzhin)
673    o Correctly handle allocation failures in evdns_getaddrinfo (6a53d15)
674    o evdns: fix EVDNS_BASE_DISABLE_WHEN_INACTIVE in case retransmit/retry (74d0eee Azat Khuzhin)
675    o evdns: add retry/reissue tests for EVDNS_BASE_DISABLE_WHEN_INACTIVE (3ca9d43 Azat Khuzhin)
676    o evdns: fail ns after we are failing/retrasmitting request (97c750d Azat Khuzhin)
677
678  Bugfixes (evhttp)
679    o http: reset connection before installing retry timer (fix http retries handling) (bc79cc5 Azat Khuzhin)
680
681
682  Testing
683    o regress_dns: fix leaks in getaddrinfo_async{,_cancel_stress} tests (2fdc5f2 Azat Khuzhin)
684    o test: add family argument for http_connection_test_() (177b8a7 Azat Khuzhin)
685    o test: add regress for evhttp_connection_set_family() with AF_INET and AF_UNSPEC (42aefeb Azat Khuzhin)
686    o test/http: add regress test for set family to AF_INET6 (3fbf3cc Azat Khuzhin)
687    o Update to a more recent tinytest_macros. (8da5a18)
688    o test/regress: add simplestsignal: to track reorder bugs separately (b897bef Azat Khuzhin)
689    o test/evbuffer_peek: add regress in case we have first buffer greater (e2d139d Azat Khuzhin)
690    o More evbuffer_peek() test cases (154006a)
691    o use correct tt macro for pointer compare (08c88ea)
692    o regress_buffer: fix 'memcmp' compare size (79800df Maks Naumov)
693    o Fix a use-after-free in unit tests. CID 752027 (3739057)
694    o Fix a dead-code warning in unit tests. CID 1193548 (c119f24)
695    o Use evutil_weakrand() in unit tests. (a677b72, 364c110)
696    o Use a more precise calculation for max in time-ratelim.c (ca5b5c7)
697    o Make a buffer larger in the tests to avoid a scary evbuffer_copyout_from() (fb57b8b)
698    o Fix several memory leaks in the unit tests. (89c1a3b)
699    o Add test for evhttp_connection_free_on_completion (b0e9924 John Ohl)
700    o Fix annoying heisenbug in test-time.c (cb73704)
701
702  Sample code
703    o Make http-server.c output into good html5 (6d72bdc)
704    o Use FindClose for handle from FindFirstFile in http-server.c (6466e88)
705    o https-client: add -retries argument, for connection retries (d9da844 Azat Khuzhin)
706
707  Bugfixes (build)
708    o Add missing headerfile for cmake (15d90cc Trond Norbye)
709    o ignore one more test binary (b6593aa Michael Richardson)
710    o ignore config.cache/test-driver files (c83f333 Mike Frysinger)
711    o add a --disable-samples configure flag (0c492b3 Mike Frysinger)
712    o Add a few files created by "make verify" to .gitignore. (1a8295a Pierre Phaneuf)
713    o updates in cmake build (27bd9fa Sergey Nikulov)
714    o Fix cmake error when the Module path has more than one entry. (befbd13 Acer Yang)
715    o Fix CMake shared library build (e69d910 Nobuaki Sukegawa)
716    o Fix warnings when compiling with clang 3.5 (f5b4765 John Ohl)
717    o Fix mixed declarations and code (forbidden by ISO C90) (8afbdbc Thomas Bernard)
718
719  Bugfixes (miscellaneous)
720    o tree.h: drop duplicated content of tree.h (6193187 Azat Khuzhin)
721    o evdns: disable probing with EVDNS_BASE_DISABLE_WHEN_INACTIVE (610410b,ad0493e,fea86a6,d83b337,5ca9e97 Azat Khuzhin)
722    o [Bugfix] fix grammer error (3a4d249 ufo2243)
723    o Change return type of evutil_load_windows_system_library_ to HMODULE (f691389)
724    o Fix a c90 warning (76643dd)
725    o Fix a typo in a doxygen comment. Reported by äº¦å¾—. (be1aeff)
726    o remove trailing comma from enum (b361b8a Jean-Philippe Ouellet)
727
728  Bugfixes (FreeBSD)
729    o Handle ENOTCAPABLE from FreeBSD - this is returned if an event in the changelist is for an FD that has been closed. (6fd7394 Adrian Chadd)
730
731
732
733 Changes in version 2.1.4-alpha (21 Mar 2014)
734
735  Libevent 2.1.4-alpha adds a number of new miscellaneous APIs to make
736  Libevent more useful, including support for early close detection with
737  epoll via EPOLLRDHUP, triggering bufferevent callbacks, adding more
738  evhttp callbacks, and more. There are also numerous bugfixes, including
739  a number for finalize-related issues from 2.1.3-alpha; and an
740  alternative (non-primary!) cmake-based build mechanism.
741
742  New APIs (core)
743    o Added event_base_get_num_events() (0fa107d Mobai Zhang)
744    o New event_base_active_by_fd API (865a142 Greg Hazel, 5c9da9a, 87fa2b0)
745    o Add event_base_active_by_signal by analogy (4865943)
746    o Add access to max event count stats (5173bef, efbd3dc, 26230a2
747      Andrew Sweeney)
748    o Implemented EV_CLOSED event for epoll backend
749      (EPOLLRDHUP). (b1b69ac Diego Giagio, 53d2793, 43ffcf6, dfe1e52
750      Marcin Juszkiewicz, ff26633 Joakim Soderberg, 3908a5e)
751
752  New APIs (evutil_secure_rng)
753    o Add evutil_secure_rng_set_urandom_device_file (2bbb5d7)
754
755  New APIs (bufferevents)
756    o Add function to fetch underlying ratelimit cfg (4b3d5af Mark Ellzey)
757    o Pass and return const for bufferevent_get_token_bucket_cfg (1c77fbb
758      Mark Ellzey)
759    o Add watermark introspection (4ce242b OndÅ™ej Kuzník)
760    o Add an option to trigger bufferevent I/O callbacks (61ee18b OndÅ™ej Kuzník)
761    o Add an option to trigger bufferevent event callbacks (a7384c7
762      OndÅ™ej Kuzník)
763    o Clarifications in response to merge req. comments (bd41947 OndÅ™ej
764      Kuzník)
765    o Minor optimizations on bufferevent_trigger options (a3172a4)
766
767  New APIs (evhttp)
768    o Add evhttp_connection_get_server(). (a7f82a3 Maxime Henrion)
769    o add a http default content type option (5a5acd9 Nicolas Martyanoff)
770    o http: implement new evhttp_connection_get_addr() api. (0c7f040 Azat
771      Khuzhin)
772    o Add a variant of evhttp_send_reply_chunk() with a callback on
773      evhttp_write_buffer() (8d8decf Julien BLACHE)
774    o Allow registering callback for parsing HTTP headers (b0bd7fe Balint Reczey)
775    o Provide on request complete callback facility (b083ca0 Andrew Sweeney)
776    o evhttp_request_set_on_complete_cb to be more specific about what
777      the function actually does and usage (da86dda Andrew Sweeney)
778    o Update unit test to make sure that the callback happens after the
779      output data is written (b85f398 Andrew Sweeney)
780
781  Features (evdns)
782    o bug fix for issues #293 evdns_base_load_hosts doesn't remove
783      outdated addresses (954d2f9, f03d353, 45eba6f Kuldeep Gupta)
784
785  Features: (cmake build support)
786    o Initial CMake commit. (e415196 Joakim Soderberg)
787    o Add all tests and benchmarks to CMake project. (e9fc014 Joakim Soderberg)
788    o More work on adding tests to CMake project (99c1dc3 Joakim Soderberg)
789    o Generate a dummy evconfig-private.h so things build
790      properly. (ce14def Joakim Soderberg)
791    o Link libm on unix platforms. (58fcd42 Joakim Soderberg)
792    o Added some GCC specific options. (19222e5 Joakim Soderberg)
793    o Use evutil_closesocket instead. (dbf2b51 Joakim Soderberg)
794    o Add copyright and licensing files for CMake modules. (c259d53
795      Joakim Soderberg)
796    o Only include WIN32 getopt where it is used. (9bbce0b Joakim Soderberg)
797    o Fix bench_cascade program on Windows. (78da644 Joakim Soderberg)
798    o Don't segfault on no found event backend. (8f2af50 Joakim Soderberg)
799    o Only test the event backends available on the system. (7ea4159
800      Joakim Soderberg)
801    o Added a "make verify" target. (e053c4f Joakim Soderberg)
802    o Fix the make "verify" target on Windows. (67e5d74 Joakim Soderberg)
803    o Get rid of deprecation warnings for OpenSSL on OSX 10.7+ (69c3516
804      Joakim Söderberg)
805    o Fix kqueue support. (a831f2f Joakim Söderberg)
806    o Added a test for testing if kqueue works with pipes. (2799b35
807      Joakim Söderberg)
808    o Change the BSD license from 4 to 3-clause. (86df3ed Joakim Soderberg)
809    o Minimum required python version is 2.4. (968e97b Joakim Soderberg)
810    o Get rid of unknown pragma warnings. (0ef1d04 Joakim Soderberg)
811    o Add a "make verify_coverage" target generation coverage
812      info. (f2483f8 Joakim Soderberg)
813    o Fix the "make verify" target on NetBSD (4ac086a Joakim Soderberg)
814    o Only look for ZLib when it is used (if tests are
815      included). (f780593 Joakim Soderberg)
816    o Added EVENT__ENABLE_GCC_WARNINGS, turns all warnings into
817      errors. (dd413bd Joakim Soderberg)
818    o Add CMake config and install targets. (f3446ed Joakim Soderberg)
819    o Fix typo (4b754df Joakim Soderberg)
820    o Some work on making it possible to simply do add_subdirectory() on
821      the project. (49ab363 Joakim Soderberg)
822    o Set USE_DEBUG=1 on EVENT__ENABLE_VERBOSE_DEBUG (fd42e70 Joakim Soderberg)
823    o Fix so that old nmake project still builds. (24d6466 Joakim
824      Soderberg)
825    o Rename README to README.md and use markdown to format. (d2bc39a
826      Joakim Soderberg)
827    o Update README with CMake build instructions. (604b8cc Joakim Soderberg)
828    o Clean up the README some. (8d4cb35 JoakimSoderberg)
829    o Forgotten headers for old nmake project compatability. (8697b99
830      Joakim Soderberg)
831    o Change all uses of WIN32 to _WIN32 (4e14395 Joakim Söderberg)
832    o Fix include bug. (2024467 Joakim Söderberg)
833    o Check if we're on OSX before disabling deprecation in le-proxy
834      (8b40a5b Joakim Söderberg)
835    o Fix broken autotools build. (ae1bd82 Joakim Söderberg)
836    o Disclaimerize cmake a little in the README (d03b5bf)
837    o Fix CMake compile when OpenSSL is disabled. (e423d42 Joakim
838      Söderberg)
839    o CMake: Get rid of python not found warning when regress tests
840      turned off. (d38d798 Joakim Söderberg)
841    o Fix https-client compilation on Windows. (d7be788 Joakim Soderberg)
842    o Guard against EVENT_NOWIN32 being set during testing. (f1715b4
843      Joakim Soderberg)
844    o Check for OSX when checking for clang. (e212c54 Joakim Soderberg)
845    o Added a Travis-CI configuration file. (8c0f0a9 Joakim Soderberg)
846    o Added -Qunused-arguments for clang on macosx (ed99d92 Trond Norbye)
847    o Rename event_extras to event_extra (a0dd5df Trond Norbye)
848    o Add option to build shared library (4545fa9 Trond Norbye)
849    o Add -Qunused-arguments for clang on macos (b56611d Trond Norbye)
850    o Add cmake-related files to .gitignore (e061321 Trond Norbye)
851    o Export event_extra not event_extras. (2b41bcf Joakim Söderberg)
852
853  Bugfixes (core)
854    o If evsel->del() fails, don't leave the evmap in an inconsistent
855      state (9b5a527 Maxime Henrion)
856    o Move event_debug_note_teardown_ before mm_free. (69b5c64)
857    o Check CLOCK_MONOTONIC_* at runtime if needed. (911abf3)
858    o Fix reinit of fds with EV_WRITE but not EV_READ. (ebfd8a8 maksqwe)
859    o Tweaked callbacks to prevent race condition
860      (https://github.com/libevent/libevent/issues/104) (40830f1, 2ea15ed
861      John Ohl)
862    o Move assert(ev) to before we use ev in EV_CLOSURE_EVENT_FINALIZE
863      case (9805972)
864
865  Bugfixes (evhttp)
866    o Fix a double close() bug in evhttp when the underlying bufferevent uses
867      BEV_OPT_CLOSE_ON_FREE. (31db8a0 Maxime Henrion)
868    o Fix an unlikely but possible error case for http connections (f22049e)
869    o Avoid racy bufferevent activation (5eb1788 Nate Rosenblum)
870
871  Bugfixes on 2.0 (Windows)
872    o Use windows vsnprintf fixup logic on all windows environments (e826f19)
873    o libevent/win32_dealloc() : fix sizeof(pointer) vs sizeof(*pointer)
874     (b8f5980 Frank Denis)
875
876  Bugfixes (evutil_secure_rng)
877    o When we seed from /proc/sys/kernel/random/uuid, count it as success
878      (e35b540)
879    o We should return after arc4random_buf() (1ea1f26 Makoto Kato)
880    o Avoid other RNG initialization FS reads when urandom file is
881      specified (9695e9c)
882    o Really remove RNG seeds from the stack (f5ced88)
883    o Fix another arc4random_buf-related warning (e64a2b0)
884
885  Bugfixes (bufferevents)
886    o Initialize async bufferevent timeout CBs unconditionally (af9b2a7)
887
888  Bugfixes (evdns)
889    o Checking request nameserver for NULL, before using it. (5c710c0
890      Belobrov Andrey)
891    o Fix SEGFAULT after evdns_base_resume if no nameservers
892      installed. (14971a8 Azat Khuzhin)
893    o Actually use the log facility for reporting evdns problems. (e1766a1)
894    o Fix SEGFAULT after evdns_base_resume if no nameservers
895      installed. (f8d7df8 Azat Khuzhin)
896    o fix for ServFail from RIPE Atlas release (62f596b Antony Antony)
897
898  Bugfixes (compilation)
899    o Fix test compilation with nmake: add the gdi.lib dependency (5ba8ab7)
900    o Whoops. It is gdi.lib, not gdi32.lib. (github issue #61) (8ab612e)
901    o Don't use return since return type is void and build error occurs
902      using clang (838161d Makoto Kato)
903    o Use void casts to suppress some "unchecked return value" warns (7080d55)
904    o rpcgen: Generate regress.gen.[c,h] in build rather than src dir
905      (243386c Ross Lagerwall)
906    o Fix a compiler warning when checking for arc4random_buf linker
907      breakage. (5cb3865)
908    o Fix 'make distcheck' by adding regress.gen.[ch] to DISTCLEANFILES
909     (239d834)
910
911    o Fix a c90 warning (c207682)
912    o Fix consts in WIN32-Code/getopt*.[ch] (57abb35)
913
914  Bugfixes (locks, synchronization)
915    o Missed lock acquire/release in event_base_cancel_single_callback_()
916      (d3d999a Azat Khuzhin)
917    o Fix locking in bufferevent_get_options_(). (dbc9cd4 Maxime Henrion)
918
919  Bugfixes (leaks)
920    o Avoid leaking segment mappings when offset is not a page multiple (d409514)
921
922  Testing
923    o Add tests for evdns_base_resume(). (1cd9ff5 Azat Khuzhin)
924    o Fix dns/leak_resume_send_err test. (7e876df Azat Khuzhin)
925    o Add checks for evhttp_connection_get_server() in unit
926      tests. (fbc323b Maxime Henrion)
927    o Fix a (failure-only) null dereference in the unit tests (1104d0b)
928    o Fix a logic error in test_evbuffer_freeze (7765884)
929    o Add missing check to test_evbuffer_file_segment_add_cleanup_cb (eba4506)
930    o Fix some crash-on-fail cases in DNS regression tests (87cd6f0)
931    o DNS tests: add a missing check (f314900)
932    o Finalize tests: add a missing check (82b6956)
933    o test_evutil_rtrim: add another missing check. (e193c95)
934    o regress_main: logging all if env EVENT_DEBUG_LOGGING_ALL isset
935      (611e28b Azat Khuzhin)
936    o regress_http: add tests for evhttp_connection_get_addr() (4dd500c
937      Azat Khuzhin)
938    o Update to the latest version of tinytest (7a80476)
939    o Heap-allocate zlib data structure in regress_zlib tests (4947c18)
940
941  Performance tweaks (core)
942    o Avoid redundant syscall to make a nonblocking socket nonblocking
943      (42c03da Maxime Henrion)
944    o Avoid redundant syscall if making a socket cloexec twice (1f29b18)
945    o Avoid redundant invocations of init_extension_functions for IOCP (3b77d62)
946
947  Documentation
948    o Document that arc4random is not a great cryptographic PRNG. (6e49696)
949    o Small doxygen tweaks (6e67b51)
950    o Try another doxygen tweak (ccf432b)
951    o Clarify event_base_loop exit conditions (031a803)
952    o Fix a typo (be7bf2c OndÅ™ej Kuzník)
953    o Document deferred eventcb behaviour (13a9a02 OndÅ™ej Kuzník)
954    o Typo fixes from Linus Nordberg (cec62cb, 8cd695b)
955    o Fix duplicate paragraph in evbuffer_ptr documentation (58408ee)
956
957  Code Improvements (coverity)
958    o Fix a pile of coverity warnings in the unit tests (867f401)
959    o Fix coverity warnings in benchmark tools. (ff7f739)
960    o Whoops; fix compilation in bench.c (544cf88)
961    o Remove spurious checks in evrpc.c error cases (coverity) (991b362)
962    o Fix a couple of compilation warnings in regress_http.c (860767e)
963    o Fix even more coverity warnings. (d240328)
964    o Stop checking for inet_aton; we don't use it. (f665d5c)
965    o Add an include to evrpc-internal to fix openbsd compilation warning
966      (5e161c6)
967
968  Cleanups
969    o Remove an unreachable return statement in minheap-internal.h (e639a9e)
970    o Refactor evmap_{io,signal}_active_() to tolerate bad inputs (974c60e)
971    o Fix needless bufferevent includes in evdns.c (254c04e)
972    o Fix a couple of "#ifdef WIN32" instances (88ecda3)
973    o Remove unneeded declaration in bufferevent-internal.h (4c8ebcd)
974
975  Sample code
976    o le-proxy: Fail more gracefully if opening listener fails (44b2491)
977    o http-server: drop uri_root from base_url in http-server. (6171e1c Azat Khuzhin)
978    o https-client: POST supported, args supported (c5887f7 Alexey Ozeritsky)
979    o https-client: code cleanup (29af65e Alexey Ozeritsky)
980    o https-client: Small tweaks to https-client.c (90786eb)
981    o https-client: Set hostname for SNI extension (by f69m) (d1976f8)
982    o https-client: add a cast to https-client.c (462e6b6)
983
984
985
986 Changes in version 2.1.3-alpha (1 May 2013)
987
988  Libevent 2.1.3-alpha fixes various bugs, adds new unit tests, and cleans
989  up the code in a couple of places. It has a new callback in evhttp for
990  reporting errors during a request, a new feature for allowing evdns to
991  not keep the event_base looping when there are no requests inflight, and
992  example code for writing an https client.
993
994  Libevent 2.1.3-alpha also has an important new (experimental) event
995  finalization feature to allow safe event teardown in multithreaded
996  programs. This ought to fix the longstanding bug with deadlocks in
997  multithreaded use of SSL-based bufferevents that some people have been
998  experiencing since Libevent 2.0.
999
1000
1001  Core (event finalization)
1002    o Implement event_finalize() and related functions to avoid certain
1003      deadlocks (8eedeab)
1004    o Use finalization feature so bufferevents can avoid deadlocks (02fbf68)
1005    o Always run pending finalizers when event_base_free() is called (e9ebef8)
1006    o Remove bufferevent_del_generic_timeout_cbs as now unused (4ea4c6a)
1007    o More documentation for finalization feature (a800b91)
1008    o Make the event_finalize* functions return an error code (5d11f4f)
1009    o Mark the finalize stuff as experiemental in case it needs to
1010      change (23e2e29)
1011
1012  Evdns
1013    o evdns: New flag to make evdns not prevent the event loop from
1014      exiting (6b7fa62 Azat Khuzhin)
1015
1016  Bugfixes (Core)
1017    o Make event_remove_timer behave correctly with persistent timers (5623e80)
1018    o Unit test for event_remove_timer with EV_PERSIST. (96150dd)
1019    o Double-check next timeout when adding events (9443868 Nate Rosenblum)
1020    o event_base_update_cache_time should be a no-op if the loop isn't
1021      running (5e6fa2a)
1022
1023  Bugfixes (evhttp, crash fix, from 2.0)
1024    o fix #73 and fix http_connection_fail_test to catch it (b618204 Greg Hazel)
1025
1026  Bugfixes (compilation and portability, from 2.0)
1027    o Fix compilation with WIN32_HAVE_CONDITION_VARIABLES enabled (7e45739)
1028    o Fix missing AC_PROG_SED on older Autoconfs (9ab2b3f Tay Ray Chuan)
1029    o Backport libevent to vanilla Autoconf 2.59 (as used in RHEL5)
1030      (74d4c44 Kevin Bowling)
1031    o Use AC_CONFIG_HEADERS in place of AM_CONFIG_HEADERS for autmake
1032      1.13 compat (817ea36)
1033    o Rename configure.in to configure.ac to appease newer autoconfs (0c79787)
1034    o Avoid using top_srcdir in TESTS: new automakes do not like this (a55514e)
1035
1036  Bugfixes (resource leaks/lock errors on error, from 2.0)
1037    o Avoid leaking fds on evconnlistener with no callback set (69db261)
1038    o Avoid double-close on getsockname error in evutil_ersatz_socketpair
1039      (0a822a6)
1040    o Fix a locking error in bufferevent_socket_get_dns_error. (0a5eb2e)
1041
1042  Documentation Fixes (from 2.0)
1043    o Fix a mistake in evbuffer_remove() arguments in example http server code
1044      (c322c20 Gyepi Sam)
1045    o Fix a typo in a comment in buffer.h. Spotted by Alt_F4 (773b0a5)
1046
1047  Documentation Fixes
1048    o minor documentation typos (809586a Patrick Pelletier)
1049    o Fix cut-and-paste err in whatsnew-2.1 (49905ac)
1050    o Fix comment to refer to sample/include.am correctly (9e8cdf3 Sebastian
1051      Hahn)
1052    o Fix typo : Dispatching instead of Dispaching (0c2bacc Volker Lendecke)
1053    o fix some hinky indentation in evhttp_make_request (80e220e Patrick
1054      Pelletier)
1055    o "buffer" spelling (a452811 Patrick Pelletier)
1056    o Specify return behavior in header for evbuffer_pullup() in corner case
1057      (cf8d1cd Dan Petro)
1058    o Clarify an important point about event_base_foreach_event() (920a5e6)
1059
1060  Compilation Fixes/Tool Support
1061    o avoid valgrind false positive by zeroing epoll_event (1258614 Patrick
1062      Pelletier)
1063    o Fix harmless clang enum warning (b452a43 Sebastian Hahn)
1064    o remove all exes on "make clean", not just regress.exe (974bfa0 Patrick
1065      Pelletier)
1066    o Make --disable-libevent-regress work again (787fd74)
1067    o Do not build strlcpy.c when it will have no code. (4914620)
1068
1069  Portability Fixes
1070    o When EWOULDBLOCK is not EAGAIN, treat it as equivalent to it (bf7a0ff)
1071    o Preliminary changes for Minix3. (0dda56a Nicholas Heath)
1072    o Use AC_CONFIG_HEADERS in place of AM_CONFIG_HEADERS for autmake 1.13
1073      compat (bf278b)
1074    o Avoid using $(top_srcdir) in TESTS. (2863c83)
1075    o build test/test-script.sh on systems with a less-featureful $< (f935e21)
1076    o Implement EVUTIL_ERR_IS_EAGAIN on windows. (42aaf4d)
1077
1078  Evhttp changes:
1079    o Fix ipv6 support for http. When URL contain domain, not IP
1080      address. (71e709c Azat Khuzhin)
1081    o uri decode: fix for warning "use of uninitialised value" (64b6ece Azat
1082      Khuzhin)
1083    o uri decode: changed the test for the existence of the next character
1084      (e1903e3 Azat Khuzhin)
1085    o Move prototype of evhttp_decode_uri_internal() to http-internal.h
1086      (de8101a Azat Khuzhin)
1087    o Test: decoding just part of string with evhttp_decode_uri_internal()
1088      (1367653 Azat Khuzhin)
1089    o Add new error_cb for actual reporting of HTTP request errors. (7b07719
1090      Azat Khuzhin)
1091    o Add test for EVREQ_HTTP_REQUEST_CANCEL into http_cancel_test() (862c217
1092      Azat Khuzhin)
1093    o Drop extra header http_struct.h from regress_http.c (54cc800 Azat Khuzhin)
1094
1095  Testing
1096    o Add regress test ipv6_for_domain. (9ec88bd Azat Khuzhin)
1097    o Add an environment variable (EVENT_DEBUG_MODE) to run unit tests in debug
1098      mode (2fad0f3)
1099    o Add a test with an active_later event at event_base_free time. (1c3147f)
1100    o Make all tests pass under EVENT_DEBUG_MODE=1 (b1b054f)
1101    o Add some verbose notes to bufferevent unit tests (9d893c9)
1102    o New test for active_later->active transition on event_active (a153874)
1103    o New tests for event_base_foreach_event() (0b096ef)
1104    o Unit tests for event_base_gettimeofday_cached() and
1105      event_base_update_cache_time() (30ea291)
1106    o A test for event_get_assignment() (f09629e)
1107    o More unit tests for initializing common timeouts. (d596739)
1108    o Fix a bug in the new main/event_foreach test (702c9aa)
1109
1110  Windows:
1111    o use FormatMessage for winsock errors (0c6ec5d, 2078e9b, 4ccdd53, c9ad3af
1112      Patrick Pelletier)
1113    o a program to print out the error strings for winsock errors (7296512
1114      Patrick Pelletier)
1115    o Fix a warning introduced in 0c6ec5d8 (eeb700c)
1116    o Fix another warning introduced in 0c6ec5d8 (ed26561)
1117
1118  Examples (http)
1119    o Add sample/https-client.c, an example of stacking evhttp as a client on
1120      top of bufferevent_ssl. (be46c99 Catalin Patulea)
1121    o use ${OPENSSL_LIBS} instead of -lssl -lcrypto (bf31fa5 Patrick Pelletier)
1122    o https-client was putting newlines at 256-byte boundaries (42d7441 Patrick
1123      Pelletier)
1124    o better handling of OpenSSL errors (5754d96 Patrick Pelletier)
1125    o use Debian's default root certificate location (aacd674 Patrick Pelletier)
1126    o use iSECPartners code to validate hostname in certificate (64d9f16
1127      Patrick Pelletier)
1128    o avoid sign mismatch warning in openssl_hostname_validation.c (6021cb5
1129      Patrick Pelletier)
1130    o pull in wildcard matching code from cURL (4db9da6 Patrick Pelletier)
1131    o Another tweak to https-client.c (95acdaa)
1132    o Remove http_struct.h usage in sample/https-client.c (8a90a85)
1133
1134
1135
1136 Changes in version 2.1.2-alpha (18 Nov 2012)
1137
1138  Libevent 2.1.2-alpha includes more portable for monotonic timers,
1139  refactors much of Libevent's internal and external infrastructure,
1140  closes some longstanding gaps in the interface, makde other
1141  improvements.  Ths log below tries to organize features by rough area of
1142  effect.  It omits a few commits which were pure bugfixes on other commits
1143  listed below.  For more detail, see the git changelogs.  For more
1144  insight, see the "whatsnew-2.1.txt" document included in the Libevent
1145  2.1.2-alpha distribution.
1146
1147  Libevent 2.1.2-alpha also includes all changes made in 2.0.19-stable
1148  through 2.0.21-stable inclusive.
1149
1150  Performance (core):
1151    o Replace pipe-based notification with EVFILT_USER where possible. This
1152      should make multithreaded programs on OSX and *BSD alert the main thread a
1153      little faster. (53a07fe)
1154    o Make th_base_lock nonrecursive. (9cd5acb)
1155
1156  New/Changed API Functions:
1157    o New event_get_priority() function to return an event's priority (f90e255)
1158    o Add a bufferevent_get_priority() function (bd39554)
1159    o Add an event_base_loopcontinue() to tell Libevent to rescan for more
1160      events right away (7d6aa5e)
1161    o Add a new callback to get called on evbuffer_file_segment free
1162      (e9f8feb yangacer, 64051b9)
1163    o Expose event_base_foreach_event() as a public API. (84fd6d7 Roman
1164       Puls, 232055e, ffe1643)
1165    o Add an event_remove_timer() to remove timer on an event without
1166      deleting it (e3b2e08)
1167    o Make bufferevent_set_timeouts(bev, NULL, NULL) have plausible
1168      semantics (9dee36b)
1169    o Rename event_enable_lock_debuging() to ..._debugging(). (The old name
1170      should still work.) (07e132e)
1171    o Add missing implementation for event_enable_debug_logging (3b3e21d)
1172
1173  PORTABLE MONOTONIC TIMERS:
1174
1175    Libevent 2.1.2 includes internal support for monotonic timers on
1176    (nearly) all supported platforms, including Windows, and OSX.  Libevent
1177    applications should now be more resilient to jumps forwards or backwards
1178    in the system clock.  Also, on Linux systems with epoll, we now
1179    optionally support microsecond-level timeouts (whereas epoll only
1180    supports millisecond-precision timeouts).
1181
1182    o Use mach_absolute_time() for monotonic clock support on OSX. (b8fd6f9)
1183    o Do not track use_monotonic field when is no monotonic clock (cb653a0)
1184    o EVENT_BASE_FLAG_PRECISE_TIMER indicates we want fine timer precision
1185      (ddd69d3)
1186    o On Linux, use CLOCK_MONOTONIC_COARSE by default (55780a7)
1187    o Implement a GetTickCount-based monotonic timer for Windows (d5e1d5a)
1188    o Refactor monotonic timer handling into a new type and set of
1189      functions; add a gettimeofday-based ratcheting implementation (f5e4eb0)
1190    o Add EVENT_PRECISE_TIMER environment var for selecting precise-but-slow
1191      timer (a2598ec)
1192    o Implement fast/precise monotonic clocks on Windows (2c47045)
1193    o Simple unit tests for monotonic timers (630f077)
1194    o Improve the monotonic-time unit test: make it check the step size (7428c78)
1195    o When PRECISE_TIMERS is set with epoll, use timerfd for microsecond
1196      precision (26c7582)
1197    o Split out time-related evutil functions into a new evutil_time.c (c419485)
1198    o Split out time-related prototypes into time-internal.h (71bca50)
1199    o Add evutil_time.obj to Makefile.nmake (0ba0683)
1200    o Avoid giving a spurious warning when timerfd support is unavailable
1201      (1aaf9f0 Dave Hart)
1202    o Make test_evutil_monotonic a little more tolerant (def3b83)
1203    o Avoid unused-var warning on systems with clock_gettime but without
1204      CLOCK_MONOTONIC_COARSE (9be5468)
1205
1206 EVENT_BASE_ONCE LEAKS:
1207    If a callback added by event_base_once() is never invoked, Libevent no
1208    longer leaks internal memory.
1209
1210    o Free dangling event_once objects on event_base_free() (c17dd59)
1211    o Add a unit test in which an event is created with event_base_once()
1212      but never fires (4343edf)
1213
1214 TESTING SUPPORT, FIXES AND IMPROVEMENTS:
1215
1216    Libevent now disables by default its unit tests that would touch the
1217    network, or that tend to fail on heavily-loaded systems.  To re-enable
1218    them, invoke the ./test/regress program with the @all alias.
1219
1220    o Simplify test.sh code significantly. (9b856fd Ross Lagerwall)
1221    o Make all tests that hit the network disabled by default (f2cea87)
1222    o Avoid a resource leak on error in http client benchmark (ea92fba)
1223    o Update to latest tinytest (911b4f0349377) (ef7c4f7)
1224    o Avoid (unlikely) overflow in bench_httpclient.c (5671033)
1225    o Shave 700 msec off the persistent_timeout_jump test (21205b8)
1226    o Check return value of write() in regress.c (c8009d2)
1227    o Make load-dependent monotonic timer tests off-by-default (2b6fe8b)
1228    o Add deferred_cb_skew to list of timing-dependent tests (34c8f31)
1229    o Avoid test -e; older shs don't have one. (f1bd938)
1230    o Fix renegotiation test to work around openssl 1.0.1 bug (c2f3086)
1231    o Fix a couple of compile warnings in the unit tests (5a9a014)
1232
1233 MISC:
1234    o Change evutil_weakrand_() to avoid platform random() (e86af4b Nicholas
1235      Marriott, 3aa4415)
1236
1237 INFRASTRUCTURE (Active-later events):
1238    As a simplification and optimization to Libevent's "deferred callback"
1239    logic (introduced in 2.0 to avoid callback recursion), Libevent now
1240    treats all of its deferrable callback types using the same logic it uses
1241    for active events.  Now deferred events no longer cause priority
1242    inversion, no longer require special code to cancel them, and so on.
1243
1244    o Refactor the callback part of an event into its own event_callback
1245      type (cba59e5)
1246    o Add "active later" event_callbacks to supersede deferred (745a63d)
1247    o event_base_assert_ok: check value of event_active_count for
1248      correctness (fec8bae)
1249    o Replace deferred_cbs with event_callback-based implementation. (ae2b84b)
1250    o Replace more deferred_cb names with event_callback (a4079aa)
1251    o Give event_base_process_active a single exit path (581b5be)
1252    o Restore our priority-inversion-prevention code with deferreds (c0e425a)
1253    o Refactor event_persist_closure: raise and extract some common logic
1254      (bec22b4)
1255    o Remove the unused bits from EVLIST_ALL (9889a3d)
1256 ||||||| merged common ancestors
1257 Changes in version 2.0.22-stable (?? Dec 2013)
1258
1259  (As of 3b77d62829c4393bda6f9105a5d3b73b48a64b71.)
1260
1261 BUGFIXES (evhttp)
1262  o fix #73 and fix http_connection_fail_test to catch it (crash fix) (b618204 Greg Hazel)
1263  o Avoid racy bufferevent activation (5eb1788 Nate Rosenblum)
1264
1265 BUGFIXES (compilation and portability)
1266  o Fix compilation with WIN32_HAVE_CONDITION_VARIABLES enabled (7e45739)
1267  o Fix missing AC_PROG_SED on older Autoconfs (9ab2b3f Tay Ray Chuan)
1268  o Backport libevent to vanilla Autoconf 2.59 (as used in RHEL5) (74d4c44 Kevin Bowling)
1269  o Use AC_CONFIG_HEADERS in place of AM_CONFIG_HEADERS for autmake 1.13 compat (817ea36)
1270  o Rename configure.in to configure.ac to appease newer autoconfs (0c79787)
1271  o Avoid using top_srcdir in TESTS: new automakes do not like this (a55514e)
1272  o Use windows vsnprintf fixup logic on all windows environments (e826f19)
1273  o Fix a compiler warning when checking for arc4random_buf linker breakage. (5cb3865)
1274  o Fix another arc4random_buf-related warning (e64a2b0)
1275
1276 BUGFIXES (resource leaks/lock errors on error)
1277  o Avoid leaking fds on evconnlistener with no callback set (69db261)
1278  o Avoid double-close on getsockname error in evutil_ersatz_socketpair (0a822a6)
1279  o Fix a locking error in bufferevent_socket_get_dns_error. (0a5eb2e)
1280  o libevent/win32_dealloc() : fix sizeof(pointer) vs sizeof(*pointer) (b8f5980 Frank Denis)
1281
1282 BUGFIXES (miscellaneous)
1283  o Avoid other RNG initialization FS reads when urandom file is specified (9695e9c, bb52471)
1284  o Avoid redundant invocations of init_extension_functions for IOCP (3b77d62)
1285
1286 BUFGIXES (evdns)
1287  o Checking request nameserver for NULL, before using it. (5c710c0 Belobrov Andrey)
1288  o Fix SEGFAULT after evdns_base_resume if no nameservers installed. (f8d7df8 Azat Khuzhin)
1289
1290 BUGFIXES (evutil_secure_random)
1291  o When we seed from /proc/sys/kernel/random/uuid, count it as success (e35b540)
1292  o Document that arc4random is not a great cryptographic PRNG. (6e49696)
1293  o Add evutil_secure_rng_set_urandom_device_file (2bbb5d7)
1294  o Really remove RNG seeds from the stack (f5ced88)
1295
1296
1297 DOCUMENTATION FIXES
1298  o Fix a mistake in evbuffer_remove() arguments in example http server code (c322c20 Gyepi Sam)
1299  o Fix a typo in a comment in buffer.h. Spotted by Alt_F4 (773b0a5)
1300
1301
1302
1303 Changes in version 2.0.21-stable (18 Nov 2012)
1304 BUGFIXES:
1305  o ssl: Don't discard SSL read event when timeout and read come close together (576b29f)
1306  o ssl: Stop looping in "consider_reading" if reading is suspended. (f719b8a Joachim Bauch)
1307  o ssl: No need to reserve space if reading is suspended. (1acf2eb Joachim Bauch)
1308  o dns: Avoid a memory-leak on OOM in evdns. (73e85dd, f2bff75 George Danchev)
1309  o build: Use python2 rather than python (0eb0109 Ross Lagerwall)
1310  o build: Compile without warnings on mingw64 (94866c2)
1311  o build: Fix compilation on mingw64 with -DUSE_DEBUG (62bd2c4)
1312  o build: Make rpcgen_wrapper.sh work on systems without a "python2" binary (f3009e4)
1313  o iocp: Close IOCP listener socket on free when LEV_OPT_CLOSE_ON_FREE is set (cb853ea Juan Pablo Fernandez)
1314  o core: Avoid crash when event_pending() called with no event_base set on event (e3cccf3)
1315  o misc: remove stray 'x' so print_err will compile when uncommented (ac35650 Patrick Pelletier)
1316  o tests: Fix renegotiation test to work around openssl 1.0.1 bug (c2f3086)
1317  o tests: Warn when openssl version in unit test mismatches compiled version. (ac009f9)
1318
1319
1320 Changes in version 2.0.20-stable (23 Aug 2012)
1321 BUGFIXES:
1322  o core: Make event_pending() threadsafe. (be7a95c Simon Liu)
1323  o win32: avoid crash when waiting forever on zero fds. (160e58b)
1324  o evhttp: Fix a memory leak on error in evhttp_uriencode (11c8b31)
1325  o evbuffer: Avoid possible needless call to writev. Found by coverity. (6a4ec5c)
1326  o evdns: memset sockaddr_in before using it. Found by coverity. (a1a0e67)
1327  o evhttp: Check more setsockopt return values when binding sockets. Found by coverity (a0912e3)
1328  o evdns: Avoid segfault on weird timeout during name lookup. (dc32077 Greg Hazel)
1329  o bufferevent_ssl: Correctly invoke callbacks when a SSL bufferevent reads some and then blocks. (606ac43)
1330
1331
1332 PORTABILITY FIXES:
1333  o check for arc4random_buf at runtime, on OS X (bff5f94 Greg Hazel)
1334  o Correctly check for arc4random_buf (fcec3e8 Sebastian Hahn)
1335  o Add explicit AC_PROG_SED to configure.in so all autoconfs will expose $(SED) (ca80ea6)
1336
1337 BUILD FIXES:
1338  o Add GCC annotations so that the vsprintf functions get checked properly (117e327)
1339  o Fix an unused variable warning on *BSD. (c0720c1)
1340
1341 UNIT TEST FIXES:
1342  o Fix a couple of memory leaks (found with Valgrind). (3b2529a Ross Lagerwall)
1343  o Remove deadcode in http regression tests. Found by coverity. (5553346)
1344  o Fix possible uninitialized read in dns regression tests. Found by coverity. (2259777)
1345  o Set umask before calling mkstemp in unit tests. Found by coverity (f1ce15d)
1346  o Fix various check-after-dereference issues in unit tests: found by coverity (4f3732d)
1347  o Fix resource leaks in the unit tests; found by coverity (270f279)
1348  o Add some missing null checks to unit tests; found by coverity (f021c3d)
1349  o Avoid more crashes/bad calls in unit tests; found by coverity (3cde5bf)
1350  o Remove unused variable; spotted by coverity (6355b2a)
1351  o Add checks to various return values in unit tests. Found by coverity (b9e7329)
1352  o Move assignment outside tt_assert in ssl unit tests. Appeases coverity. (a2006c0)
1353
1354
1355
1356 Changes in version 2.0.19-stable (3 May 2012)
1357 BUGFIXES (CORE):
1358  o Refactor event_persist_closure: raise and extract some common logic (bec22b4)
1359  o If time has jumped so we'd reschedule a periodic event in the past, schedule it for the future instead (dfd808c)
1360  o If a higher-priority event becomes active, don't continue running events of the current priority. (2bfda40)
1361
1362 BUGFIXES (SSL):
1363  o Fixed potential double-readcb execution with openssl bufferevents. (4e62cd1 Mark Ellzey)
1364
1365 BUGFIXES (DNS):
1366  o Cancel a probe request when the server is freed, and ignore cancelled probe callbacks (94d2336 Greg Hazel)
1367  o Remove redundant DNS_ERR_CANCEL check, move comment (46b8060 Greg Hazel)
1368  o When retransmitting a timed-out DNS request, pick a fresh nameserver. (3d9e52a)
1369
1370 DOCUMENTATION FIXES:
1371  o Fix a typo in the bufferevent documentation (98e9119)
1372  o Add missing ) to changelog; spotted by rransom (4c7ee6b)
1373  o Fix the website URL in the readme (f775521)
1374
1375 COMPILATION FIXES:
1376  o Fix a compilation error with MSVC 2005 due to use of mode_t (336dcae)
1377  o Configure with gcc older than 2.95 (4a6fd43 Sebastian Hahn)
1378  o Generate event-config.h with a single sed script (30b6f88 Zack Weinberg)
1379
1380 FORWARD-COMPATIBILITY:
1381  o Backport: provide EVENT_LOG_* names, and deprecate _EVENT_LOG_* (d1a03b2)
1382
1383 TESTING/DEBUGGING SUPPORT:
1384  o dns-example.c can now take a resolv.conf file on the commandline (6610fa5)
1385  o Make some evdns.c debug logs more verbose (d873d67)
1386  o Work-around a stupid gcov-breaking bug in OSX 10.6 (b3887cd)
1387
1388
1389
1390 Changes in version 2.0.18-stable (22 Mar 2012)
1391 BUGFIXES (core):
1392  o Make uses of open() close-on-exec safe by introducing an internal evutil_open_closeonexec. (d2b5f72 Ross Lagerwall, 03dce42)
1393
1394 BUGFIXES (kqueue):
1395  o Properly zero the kevent in kq_setup_kevent() (c2c7b39 Sebastian Hahn)
1396
1397 BUILD FIXES:
1398  o Added OPENSSL_LDFLAGS env variable which is appended to SSL checks. (9278196 Mark Ellzey)
1399  o Changed OPENSSL_LDFLAGS to OPENSSL_LIBADD (2d67b63 Mark Ellzey)
1400  o Don't do clang version detection when disabling some flags (083296b Sebastian Hahn)
1401
1402 BUGFIXES (dns):
1403  o Stop crashing in evdns when nameserver probes give a weird error (bec5068)
1404
1405
1406 Changes in version 2.0.17-stable (10 Feb 2012)
1407
1408 BUGFIXES (core):
1409  o Be absolutely sure to clear pncalls before leaving event_signal_closure (11f36a5)
1410  o check for sysctl before we use it (358c745 Mike Frysinger)
1411  o Remove bogus casts of socket to int before calling ev_callback (f032516)
1412  o Make evconnlistener work around bug in older Linux when getting nmapped (ecfc720)
1413  o Fix a list corruption bug when using event_reinit() with signals present (6e41cdc)
1414  o Fix a fd leak in event_reinit() (3f18ad1)
1415  o Do a memberwise comparison of threading function tables (c94a5f2 Nate R)
1416  o Use C-style comments in C source files (for compatibility with compilers such as xlc on AIX). (d84d917 Greg Hewgill)
1417  o Avoid crash when freeing event_iocp and using event_set_mem_functions (19715a6)
1418  o In the kqueue backend, do not report EBADF as an EV_READ (5d7bfa1 Nicholas Marriott)
1419
1420 BUGFIXES (evbuffer and bufferevents):
1421  o Fix behavior of evbuffer_peek(buf,-1,NULL,NULL,0) (c986f23 Zack Weinberg)
1422  o Loop on filtering SSL reads until we are blocked or exhausted. (5b4b812)
1423
1424 BUGFIXES (evhttp):
1425  o Force strict validation of HTTP version in response. (790f6b3 Catalin Patulea)
1426
1427 BUGFIXES (evdns):
1428  o evdns: fix a bug in circular-queue implementation (d6094b1)
1429
1430 BUILD FIXES:
1431  o Fix a silly compilation error with the sun compiler (1927776 Colin Watt)
1432  o Suppress a gcc warning from ignoring fwrite return in http-sample.c (7206e8c)
1433
1434 DOCUMENTATION FIXES:
1435  o Slightly clarify evbuffer_peek documentation (7bbf6ca)
1436  o Update copyright notices to 2012 (e49e289)
1437
1438 NEW APIS:
1439  o Backport evhttp_connection_get_bufferevent to Libevent 2.0 (da70fa7 Arno Bakker)
1440
1441 TESTS AND TEST FIXES:
1442  o Fix a race condition in the dns/bufferevent_connect_hostname test. (cba48c7)
1443  o Add function to check referential integrity of an event_base (27737d5)
1444  o Check event_base correctness at end of each unit test (3312b02)
1445  o Workaround in the unit tests for an apparent epoll bug in Linux 3.2 (dab9187)
1446  o Better workaround for Linux 3.2 edge-triggered epoll bug (9f9e259)
1447
1448 Changes in version 2.0.16-stable (18 Nov 2011)
1449 BUGFIXES (core):
1450  o More detailed message in case of libevent self-debugging failure. (9e6a4ef Leonid Evdokimov)
1451  o epoll: close fd on alloc fail at initialization (1aee718 Jamie Iles)
1452  o Fix compile warning from saying event2/*.h inside a comment (447b0ba)
1453  o Warn when unable to construct base because of failing make_base_notifiable (4e797f3)
1454  o Don't try to make notifiable event_base when no threading fns are configured (e787413)
1455
1456 BUGFIXES (evbuffer):
1457  o unit test for remove_buffer bug (90bd620 Greg Hazel)
1458  o Fix an evbuffer crash in evbuffer_remove_buffer() (c37069c)
1459
1460 BUGFIXES (bufferevent_openssl):
1461  o Refactor amount-to-read calculations in buffervent_ssl consider_reading() (a186e73 Mark Ellzey)
1462  o Move SSL rate-limit enforcement into bytes_to_read() (96c562f)
1463  o Avoid spinning on OpenSSL reads (2aa036f Mark Ellzey)
1464
1465 BUGFIXES (dns)
1466  o Empty DNS reply with OK status is another way to say NODATA. (21a08d6 Leonid Evdokimov)
1467
1468 TESTING:
1469  o Tests for 94fba5b and f72e8f6 (d58c15e Leonid Evdokimov)
1470  o Test for commit aff6ba1 (f7841bf Leonid Evdokimov)
1471  o Style and comment tweaks for dns/leak* tests (5e42202)
1472  o improve test to remove at least one buffer from src (7eb52eb Greg Hazel)
1473
1474 DOCUMENTATION:
1475  o Add note about evhttp_send_reply_end to its doxygen (724bfb5)
1476  o Update copyright dates to 2011. (3c824bd)
1477  o Fix typo in whatsnew-2.0.txt (674bc6a Mansour Moufid)
1478  o Improve win32 behavior of dns-sample.c code (a3f320e Gisle Vanem)
1479
1480
1481
1482 Changes in version 2.0.15-stable (12 Oct 2011)
1483 BUGFIXES (DNS):
1484  o DNS: add ttl for negative answers using RFC 2308 idea. (f72e8f6 Leonid Evdokimov)
1485  o Add DNS_ERR_NODATA error code to handle empty replies. (94fba5b Leonid Evdokimov)
1486
1487 BUFGIXES (bufferevents and evbuffers):
1488  o Make evbuffer callbacks get the right n_added value after evbuffer_add (1ef1f68 Alex)
1489  o Prefer mmap to sendfile unless a DRAINS_TO_FD flag is set. Allows add_file to work with SSL. (0ba0af9)
1490
1491 BUGFIXES (event loop):
1492  o When a signal callback is activated to run multiple times, allow event_base_loopbreak to work even before they all have run. (4e8eb6a)
1493
1494 DOCUMENTATION FIXES:
1495  o Fix docstring in dns.h (2b6eae5 Leonid Evdokimov)
1496  o refer to non-deprecated evdns functions in comments (ba5c27d Greg Hazel)
1497
1498 BUILD AND TESTING FIXES:
1499  o le-proxy and regress depend on openssl directly (9ae061a Sergey Avseyev)
1500  o Use _SOURCES, not _sources, in sample/Makefile.am (7f82382)
1501  o Fixed compiler warnings for unchecked read/write calls. (c3b62fd Mark Ellzey)
1502  o Make write-checking fixes use tt_fail_perror (2b76847)
1503  o Fix some "value never used" warnings with gcc 4.6.1 (39c0cf7)
1504
1505
1506
1507 Changes in version 2.0.14-stable (31 Aug 2011)
1508 BUGFIXES (bufferevents and evbuffers):
1509  o Propagate errors on the underlying bufferevent to the user. (4a34394 Joachim Bauch)
1510  o Ignore OpenSSL deprecation warnings on OS X (5d1b255 Sebastian Hahn)
1511  o Fix handling of group rate limits under 64 bytes of burst (6d5440e)
1512  o Solaris sendfile: correctly detect amount of data sent (643922e Michael Herf)
1513  o Make rate limiting work with common_timeout logic (5b18f13)
1514  o clear read watermark on underlying bufferevent when creating filtering bev to fix potentially failing fragmented ssl handshakes (54f7e61 Joachim Bauch)
1515
1516 BUGFIXES (IOCP):
1517  o IOCP: don't launch reads or writes on an unconnected socket (495c227)
1518  o Make IOCP rate-limiting group support stricter and less surprising. (a98da7b)
1519  o Have test-ratelim.c support IOCP (0ff2c5a)
1520  o Make overlapped reads result in evbuffer callbacks getting invoked (6acfbdd)
1521  o Correctly terminate IO on an async bufferevent on bufferevent_free (e6af35d)
1522
1523 BUGFIXES (other):
1524  o Fix evsig_dealloc memory leak with debugging turned on. (9b724b2 Leonid Evdokimov)
1525  o Fix request_finished memory leak with debugging turned on. (aff6ba1 Leonid Evdokimov)
1526
1527 BUILD AND TESTING FIXES:
1528  o Allow OS-neutral builds for platforms where some versions have arc4random_buf (b442302 Mitchell Livingston)
1529  o Try to fix 'make distcheck' errors when building out-of-tree (04656ea Dave Hart)
1530  o Clean up some problems identified by Coverity. (7c11e51 Harlan Stenn)
1531
1532
1533 Changes in version 2.0.13-stable (18 Jul 2011)
1534 BUGFIXES
1535  o Avoid race-condition when initializing global locks (b683cae)
1536  o Fix bug in SSL bufferevents backed by a bev with a write high-watermarks (e050703 Joachim Bauch)
1537  o Speed up invoke_callbacks on evbuffers when there are no callbacks (f87f568 Mark Ellzey)
1538  o Avoid a segfault when all methods are disabled or broken (27ce38b)
1539  o Fix incorrect results from evbuffer_search_eol(EOL_LF) (4461f1a)
1540  o Add some missing checks for mm_calloc failures (89d5e09)
1541  o Replace an assertion for event_base_free(NULL) with a check-and-warn (09fe97d)
1542  o Report kqueue ebadf, epipe, and eperm as EV_READ events (1fd34ab)
1543  o Check if the `evhttp_new_object' function in `http.c' returns NULL. (446cc7a Mansour Moufid)
1544  o Use the correct printf args when formatting size_t (3203f88)
1545  o Complain if the caller tries to change threading cbs after setting them (cb6ecee)
1546
1547 DOCUMENTATION FIXES AND IMPROVEMENTS
1548  o Revise the event/evbuffer/bufferevent doxygen for clarity and accuracy (2888fac)
1549  o Update Doxyfile to produce more useful output (aea0555)
1550
1551 TEST FIXES
1552  o Fix up test_evutil_snprintf (caf695a)
1553  o Fix tinytest invocation from windows shell (57def34 Ed Day)
1554
1555 BUILD FIXES
1556  o Use AM_CPPFLAGS in sample/Makefile.am, not AM_CFLAGS (4a5c82d)
1557  o Fix select.c compilation on systems with no NFDBITS (49d1136)
1558  o Fix a few warnings on OpenBSD (8ee9f9c Nicholas Marriott)
1559  o Don't break when building tests from git without python installed (b031adf)
1560  o Don't install event_rpcgen.py when --disable-libevent-install is used (e23cda3 Harlan Stenn)
1561  o Fix AIX build issue with TAILQ_FOREACH definition (e934096)
1562
1563
1564 Changes in version 2.0.12-stable (4 Jun 2011)
1565 BUGFIXES
1566  o Fix a warn-and-fail bug in kqueue by providing kevent() room to report errors (28317a0)
1567  o Fix an assert-inducing fencepost bug in the select backend (d90149d)
1568  o Fix failing http assertion introducd in commit 0d6622e (0848814 Kevin Ko)
1569  o Fix a bug that prevented us from configuring IPv6 nameservers. (74760f1)
1570  o Prevent size_t overflow in evhttp_htmlescape. (06c51cd Mansour Moufid)
1571  o Added several checks for under/overflow conditions in evhttp_handle_chunked_read (a279272 Mark Ellzey)
1572  o Added overflow checks in evhttp_read_body and evhttp_get_body (84560fc Mark Ellzey)
1573
1574 DOCUMENTATION:
1575  o Add missing words to EVLOOP_NONBLOCK documentation (9556a7d)
1576
1577 BUILD FIXES
1578  o libssl depends on libcrypto, not the other way around. (274dd03 Peter Rosin)
1579  o Libtool brings in the dependencies of libevent_openssl.la automatically (7b819f2 Peter Rosin)
1580  o Use OPENSSL_LIBS in Makefile.am (292092e Sebastian Hahn)
1581  o Move the win32 detection in configure.in (ceb03b9 Sebastian Hahn)
1582  o Correctly detect openssl on windows (6619385 Sebastian Hahn)
1583  o Fix a compile warning with zlib 1.2.4 and 1.2.5 (5786b91 Sebastian Hahn)
1584  o Fix compilation with GCC 2, which had no __builtin_expect (09d39a1 Dave Hart)
1585  o Fix new warnings from GCC 4.6 (06a714f)
1586  o Link with -lshell32 and -ladvapi32 on Win32. (86090ee Peter Rosin)
1587  o Make the tests build when OpenSSL is not available. (07c41be Peter Rosin)
1588  o Bring in the compile script from automake, if needed. (f3c7a4c Peter Rosin)
1589  o MSVC does not provide S_ISDIR, so provide it manually. (70be7d1 Peter Rosin)
1590  o unistd.h and sys/time.h might not exist. (fe93022 Peter Rosin)
1591  o Make sure TINYTEST_LOCAL is defined when building tinytest.c (8fa030c Peter Rosin)
1592  o Fix winsock2.h #include issues with MSVC (3d768dc Peter Rosin)
1593  o Use evutil_gettimeofday instead of relying on the system gettimeofday. (0de87fe Peter Rosin)
1594  o Always use evutil_snprintf, even if OS provides it (d1b2d11 Sebastian Hahn)
1595  o InitializeCriticalSectionAndSpinCount requires _WIN32_WINNT >= 0x0403. (816115a Peter Rosin)
1596  o cygwin: make it possible to build DLLs (d54d3fc)
1597
1598
1599
1600 Changes in version 2.0.11-stable (27 Apr 2011)
1601   [Autogenerated from the Git log, sorted and cleaned by hand.]
1602 BUGFIXES:
1603  o Fix evport handling of POLLHUP and POLLERR (b42ce4b)
1604  o Fix compilation on Windows with NDEBUG (cb8059d)
1605  o Check for POLLERR, POLLHUP and POLLNVAL for Solaris event ports (0144886 Trond Norbye)
1606  o Detect and handle more allocation failures. (666b096 Jardel Weyrich)
1607  o Use event_err() only if the failure is truly unrecoverable. (3f8d22a Jardel Weyrich)
1608  o Handle resize failures in the select backend better. (83e805a)
1609  o Correctly free selectop fields when select_resize fails in select_init (0c0ec0b)
1610  o Make --enable-gcc-warnings a no-op if not using gcc (3267703)
1611  o Fix a type error in our (unused) arc4random_stir() (f736198)
1612  o Correctly detect and stop non-chunked http requests when the body is too long (63a715e)
1613  o Have event_base_gettimeofday_cached() always return wall-clock time (a459ef7)
1614  o Workaround for http crash bug 3078187 (5dc5662 Tomash Brechko)
1615  o Fix incorrect assertions and possible use-after-free in evrpc_free() (4b8f02f Christophe Fillot)
1616  o Reset outgoing http connection when read data in idle state. (272823f Tomash Brechko)
1617  o Fix subtle recursion in evhttp_connection_cb_cleanup(). (218cf19 Tomash Brechko)
1618  o Fix the case when failed evhttp_make_request() leaved request in the queue. (0d6622e Tomash Brechko)
1619  o Fix a crash bug in evdns server circular list code (00e91b3)
1620  o Handle calloc failure in evdns. (Found by Dave Hart) (364291e)
1621  o Fix a memory leak on win32 socket->event map. (b4f89f0)
1622  o Add a forgotten NULL check to evhttp_parse_headers (12311ff Sebastian Hahn)
1623  o Fix possible NULL-deref in evdns_cancel_request (5208544 Sebastian Hahn)
1624
1625 PORTABILITY:
1626  o Fall back to sscanf if we have no other way to implement strtoll (453317b)
1627  o Build correctly on platforms without sockaddr_storage (9184563)
1628  o Try to build correctly on platforms with no IPv6 support (713c254)
1629  o Build on systems without AI_PASSIVE (cb92113)
1630  o Fix http unit test on non-windows platforms without getaddrinfo (6092f12)
1631  o Do not check for gethostbyname_r versions if we have getaddrinfo (c1260b0)
1632  o Include arpa/inet.h as needed on HPUX (10c834c Harlan Stenn)
1633  o Include util-internal.h as needed to build on platforms with no sockaddr_storage (bbf5515 Harlan Stenn)
1634  o Check for getservbyname even if not on win32. (af08a94 Harlan Stenn)
1635  o Add -D_OSF_SOURCE to fix hpux builds (0b33479 Harlan Stenn)
1636  o Check for allocation failures in apply_socktype_protocol_hack (637d17a)
1637  o Fix the check for multicast or broadcast addresses in evutil_check_interfaces (1a21d7b)
1638  o Avoid a free(NULL) if out-of-memory in evdns_getaddrinfo. Found by Dave Hart (3417f68)
1639
1640 DEFENSIVE PROGRAMMING:
1641  o Add compile-time check for AF_UNSPEC==PF_UNSPEC (3c8f4e7)
1642
1643 BUGS IN TESTS:
1644  o Fix test.sh output on solaris (b4f89b6 Dave Hart)
1645  o Make test-eof fail with a timeout if we never get an eof. (05a2c22 Harlan Stenn)
1646  o Use %s with printf in test.sh (039b9bd)
1647  o Add an assert to appease clang's static analyzer (b0ff7eb Sebastian Hahn)
1648  o Add a forgotten return value check in the unit tests (3819b62 Sebastian Hahn)
1649  o Actually send NULL request in http_bad_request_test (b693c32 Sebastian Hahn)
1650  o add some (void) casts for unused variables (65707d7 Sebastian Hahn)
1651  o Refactor test_getaddrinfo_async_cancel_stress() (48c44a6 Sebastian Hahn)
1652  o Be nice and "handle" error return values in sample code (4bac793 Sebastian Hahn)
1653  o Check return value of evbuffer_add_cb in tests (93a1abb Sebastian Hahn)
1654  o Remote some dead code from dns-example.c (744c745 Sebastian Hahn)
1655  o Zero a struct sockaddr_in before using it (646f9fe Sebastian Hahn)
1656
1657 BUILD FIXES:
1658  o Fix warnings about AC_LANG_PROGRAM usage (f663112 Sebastian Hahn)
1659  o Skip check for zlib if we have no zlib.h (a317c06 Harlan Stenn)
1660  o Fix autoconf bracket issues; make check for getaddrinfo include netdb.h (833e5e9 Harlan Stenn)
1661  o Correct an AM_CFLAGS to an AM_CPPFLAGS in test/Makefile.am (9c469db Dave Hart)
1662  o Fix make distcheck & installation of libevent 1 headers (b5a1f9f Dave Hart)
1663  o Fix compilation under LLVM/clang with --enable-gcc-warnings (ad9ff58 Sebastian Hahn)
1664
1665 FEATURES:
1666  o Make URI parser able to tolerate nonconformant URIs. (95060b5)
1667
1668 DOCUMENTATION:
1669  o Clarify event_set_mem_functions doc (926f816)
1670  o Correct evhttp_del_accept_socket documentation on whether socket is closed (f665924)
1671  o fix spelling mistake in whatsnew-2.0.txt (deb2f73)
1672  o Fix sample/http-server ipv6 fixes (eb692be)
1673  o Comment internal headers used in sample code. (4eb281c)
1674  o Be explicit about how long event loops run in event.h documentation (f95bafb)
1675  o Add comment to configure.in to explain gc-sections test logic (c621359)
1676  o Fix a couple of memory leaks in samples/http-server.c. Found by Dave Hart. (2e9f665)
1677
1678
1679
1680 BUILD IMPROVEMENTS:
1681  Libevent 2.1.2-alpha modernizes Libevent's use of autotools, and makes
1682  numerous other build system. Parallel builds should be faster, and all
1683  builds should be quieter.
1684
1685    o Split long lists in Makefile.am into one-item-per-line (2711cda)
1686    o Remove unnecessary code in configure.in. (e65914f Ross Lagerwall)
1687    o attempt to support OpenSSL in Makefile.nmake (eba0eb2 Patrick Pelletier)
1688    o Use newer syntax for autoconf/automake init (7d60ba8)
1689    o Enable silent build rules by default. Override with V=1 (7b18e5c)
1690    o Switch to non-recursive makefiles (7092f3b)
1691    o Rename subordinate Makefile.ams to include.am (6cdfeeb)
1692    o Make quiet build even quieter (371a123)
1693    o New --quiet option for event_rpcgen.py (aa59c1e)
1694    o Be quiet when making regress.gen.[ch] (607a8ff)
1695    o Fix handling of no-python case for nonrecursive make (1e3123d)
1696    o We now require automake 1.9 or later. Modernize! (b7f6e89)
1697    o Rename configure.in to configure.ac. (b3fea67 Ross Lagerwall)
1698    o Use correct openssl libs and includes in pkgconfig file (d70af27)
1699    o Use the same CFLAGS for openssl when building unit tests as with
1700      libevent (1d9d511)
1701
1702 DOCUMENTATION
1703    o Note that make_base_notifiable should not be necessary (26ee5f9)
1704    o Be more clear that LEV_OPT_DEFERRED_ACCEPT has tricky prereqs (371efeb)
1705    o Add caveat to docs about bufferevent_free() with data in outbuf (6fab9ee)
1706    o Make it more clear that NOLOCK means "I promise, no multithreading"
1707     (9444524)
1708    o Fix a comment in test-fdleak after 077c7e949. (3881d8f Ross Lagerwall)
1709    o Make the Makefile.nmake warning slightly less dire (e7bf4c8)
1710    o Fix typo : events instead of evets (05f1aca Azat Khuzhin)
1711    o Additional comments about OPENSSL_DIR variable, prompted by Dave Hart
1712      (6bde2ef Patrick Pelletier)
1713
1714 EVHTTP:
1715    o ignore LWS after field-content in headers (370a2c0 Artem Germanov)
1716    o Clean up rtrim implementation (aa59d80)
1717    o Remove trailing tabs in HTTP headers as well. (ac42519)
1718    o Remove internal ws from multiline http headers correctly (c6ff381)
1719    o Move evutil_rtrim_lws_ to evutil.c where it belongs (61b93af)
1720    o add evhttp_request_get_response_code_line (4f4d0c9 Jay R. Wren)
1721    o Use EVUTIL_SOCKET_ERROR() wrapper to save/restore errno in
1722      evhttp_connection_fail_ (7afbd60)
1723    o preserve errno in evhttp_connection_fail_ for inspection by the
1724      callback (36d0ee5 Patrick Pelletier)
1725
1726 BUGFIXES:
1727    o Correctly handle running on a system where accept4 doesn't work. (9fbfe9b)
1728    o Avoid double-free on error in evbuffer_add_file. Found by
1729      coverity. (6a81b1f)
1730    o Fix another possible uninitialized read in dns regression tests. Found
1731      by coverity. (13525c5)
1732    o Add checks for functions in test-ratelim.c; found by Coverity (aa501e1)
1733    o Avoid memory leak in test_event_calloc unit test; found by coverity
1734      (92817a1)
1735    o Fix a shadowed variable in addfile_test_readcb; found by coverity
1736      (225344c)
1737    o Check return value when using LEV_OPT_DEFERRED_ACCEPT. Found by
1738      coverity (6487f63)
1739    o Prevent reference leak of bufferevent if getaddrinfo fails. (b757786
1740      Joachim Bauch)
1741    o Make event_base_getnpriorities work with old "implicit base" code
1742      (c46cb9c)
1743    o Simplify and correct evutil_open_closeonexec_ (0de587f)
1744    o Fix event_dlist definition when sys/queue not included (81b6209
1745      Derrick Pallas)
1746
1747
1748
1749 Changes in version 2.1.1-alpha (4 Apr 2012)
1750
1751  Libevent 2.1.1-alpha includes a number of new features and performance
1752  improvements.  The log below tries to organize them by rough area of
1753  effect.  It omits some commits which were pure bugfixes on other commits
1754  listed below.  For more detail, see the git changelogs.  For more
1755  insight, see the "whatsnew-2.1.txt" document included in the Libevent
1756  2.1.1-alpha distribution.
1757
1758  Performance: Core
1759    o Replace several TAILQ users with LIST. LIST can be a little faster than
1760      TAILQ for cases where we don't need queue-like behavior. (f9db33d,
1761      6494772, d313c29, 974d004)
1762    o Disabled code to optimize the case where we reinsert an existing
1763      timeout (e47042f, 09cbc3d)
1764    o Remove a needless base-notify when rescheduling the first timeout (77a96fd)
1765    o Save a needless comparison when removing/adjusting timeouts (dd5189b)
1766    o Possible optimization: split event_queue_insert/remove into
1767      separate functions. needs testing (efc4dc5)
1768    o Make event_count maintenance branchless at the expense of an
1769      extra shift. Needs benchmarking (d1cee3b)
1770    o In the 2.1 branch, let's try out lazy gettimeofday/clock_gettime
1771      comparison (2a83ecc)
1772    o Optimization in event_process_active(): ignore maxcb & endtime
1773      for highest priority events. (a9866aa Alexander Drozdov)
1774    o Bypass event_add when using event_base_once() for a 0-sec timeout (35c5c95)
1775    o Remove the eventqueue list and the ev_next pointers. (604569b 066775e)
1776
1777  Performance: Evbuffers
1778    o Roughly 20% speed increase when line-draining a buffer using
1779      EVBUFFER_EOL_CRLF (5dde0f0 Mina Naguib)
1780    o Try to squeeze a little more speed out of EVBUFFER_EOL_CRLF (7b9d139)
1781    o Fix a bug in the improved EOL_CRLF code (d927965)
1782    o Remove a needless branch in evbuffer_drain() (d19a326)
1783
1784  Performance: Linux
1785    o Infrastructure for using faster/fewer syscalls when creating
1786      sockets (a1c042b)
1787    o Minimize syscalls during socket creation in listener.c (7e9e289)
1788    o Use a wrapper function to create the notification
1789      pipe/socketpair/eventfd (ca76cd9)
1790    o Use pipes for telling signals to main thread when possible (a35f396)
1791    o Save syscalls when constructing listener sockets for evhttp (af6c9d8)
1792    o Save some syscalls when creating evdns sockets (713e570)
1793    o Save some syscalls when constructing a socket for a bufferevent (33fca62)
1794    o Prefer epoll_create1 on Linuxen that have it (bac906c)
1795
1796  Performance: Epoll backend
1797    o Use current event set rather than current pending change when
1798      deciding whether to no-op a del (04ba27e Mike Smellie)
1799    o Replace big chain of if/thens in epoll.c with a table lookup (8c83eb6)
1800    o Clean up error handling in epoll_apply_one_change() a little (2d55a19)
1801
1802  Performance: Evport backend
1803    o evport: use evmap_io to track fdinfo status. Should save time and
1804      RAM. (4687ce4)
1805    o evport: Remove a linear search over recent events when
1806      reactivating them (0f77efe)
1807    o evport: Use portev_user to remember fdinfo struct (276ec0e)
1808    o evport: don't scan more events in ed_pending than needed (849a5cf)
1809    o evport: Remove artificial low limit on max events per getn call (c04d927)
1810    o Reenable main/many_events_slow_add for evport in 2.1 (e903db3)
1811
1812  Performance: Windows
1813    o Use GetSystemTimeAsFileTime to implement gettimeofday on
1814      win32. It's faster and more accurate than our old
1815      approach. (b8b8aa5)
1816
1817  New functions and features: debugging
1818    o Add event_enable_debug_logging() to control use of debug logs (e30a82f)
1819
1820  New functions and features: core
1821    o Add event_config function to limit time/callbacks between calls
1822      to dispatch (fd4de1e, 9fa56bd, a37a0c0, 3c63edd)
1823    o New EVLOOP_NO_EXIT_ON_EMPTY option to keep looping even when no
1824      events are pending (084e68f)
1825    o Add event_base_get_npriorities() function. (ee3a4ee Alexander Drozdov)
1826    o Make evbase_priority_init() and evbase_get_npriorities()
1827      threadsafe (3c55b5e)
1828    o New event_base_update_cache_time() to set cached_tv to current
1829      time (212533e Abel Mathew)
1830    o Add event_self_cbarg() to be used in conjunction with
1831      event_new(). (ed36e6a Ross Lagerwall, fa931bb, 09a1906, 1338e6c,
1832      33e43ef)
1833    o Add a new libevent_global_shutdown() to free all globals before
1834      exiting. (041ca00 Mark Ellzey, f98c158, 15296d0, 55e991b)
1835    o Use getifaddrs to detect our interfaces if possible (7085a45)
1836    o Add event_base_get_running_event() to get the event* whose cb we
1837      are in (c5732fd, 13dad99)
1838
1839  New functions and features: building
1840    o Implement --enable-gcc-hardening configure option (7550267 Sebastian Hahn)
1841
1842  New functions and features: evbuffers
1843    o Add evbuffer_add_file_segment() so one fd can be used efficiently
1844      in more than one evbuffer_add_file at a time (e72afae, c2d9884,
1845      3f405d2, 0aad014)
1846    o Fix windows file segment mappings (8254de7)
1847    o Allow evbuffer_ptr_set to yield a point just after the end of the
1848      buffer. (e6fe1da)
1849    o Allow evbuffer_ptr to point to position 0 in an empty evbuffer
1850      (7aeb2fd Nir Soffer)
1851    o Set the special "not found" evbuffer_ptr consistently. (e3e97ae Nir Soffer)
1852    o support adding buffers to other buffers non-destructively
1853      (9d7368a Joachim Bauch)
1854    o prevent nested multicast references, reworked locking (26041a8
1855      Joachim Bauch)
1856    o New EVBUFFER_EOL_NUL to read NUL-terminated strings from an
1857      evbuffer (d7a8b36 Andrea Montefusco, 54142c9)
1858    o Make evbuffer_file_segment_types adaptable (c6bbbf1)
1859    o Added evbuffer_add_iovec and unit tests. (aaec5ac Mark Ellzey, 27b5398)
1860    o Add evbuffer_copyout_from to copy data from the middle of a
1861      buffer (27e2225)
1862
1863  New functions and features: bufferevents
1864    o Allow users to set allow_dirty_shutdown (099d27d Catalin Patulea)
1865    o Tweak allow_dirty_shutdown documentation (a44cd2b)
1866    o Fix two issues in the allow_dirty_shutdown code. (f3b89de)
1867    o Add a bufferevent_getcb() to find a bufferevent's current
1868      callbacks (a650394)
1869    o bufferevent: Add functions to set/get max_single_read/write
1870      values. (998c813 Alexander Drozdov)
1871    o bev_ssl: Be more specific in event callbacks. evhttp in particular gets
1872      confused without at least one of BEV_EVENT_{READING|WRITING}. (f7eb69a
1873      Catalin Patulea)
1874
1875  New functions and features: evconnlisteners
1876    o Support TCP_DEFER_ACCEPT sockopts for listeners (5880e4a Mark Ellzey,
1877      a270728)
1878    o Add another caveat to the TCP_DEFER_ACCEPT documentation (a270728)
1879    o Allow evconnlistener to be created in disabled state. (9593a33
1880      Alexander Drozdov)
1881    o The LEV_OPT_CLOSE_ON_EXEC flag now applies to accepted listener
1882      sockets too (4970329)
1883
1884  Evhttp:
1885    o Add new evhttp_{connection_}set_timeout_tv() functions to set
1886      finger-grained http timeouts (6350e6c Constantine Verutin)
1887    o Performance tweak to evhttp_parse_request_line. (aee1a97 Mark Ellzey)
1888    o Add missing break to evhttp_parse_request_line (0fcc536)
1889    o Add evhttp callback for bufferevent creation; this lets evhttp
1890      support SSL. (8d3a850)
1891    o Remove calls to deprecated bufferevent functions from evhttp.c (4d63758)
1892    o evhttp: Add evhttp_foreach_bound_socket. (a2c48e3 Samy Al Bahra)
1893
1894  Build improvements:
1895    o Add AC_USE_SYSTEM_EXTENSIONS to configure.in. Requires follow on
1896      patches for correctness and robustness. (1fa7dbe Kevin Bowling)
1897    o Filter '# define' statements from autoconf and generate
1898      event-private.h (321b558 Kevin Bowling)
1899    o Remove internal usage of _GNU_SOURCE (3b26541 Kevin Bowling)
1900    o Eliminate a couple more manual internal _GNU_SOURCE defines (c51ef93
1901      Kevin Bowling)
1902    o Add AC_GNU_SOURCE to the fallback case. (ea8fa4c Kevin Bowling)
1903    o Use a Configuration Header Template for evconfig-private.h (868f888
1904      Kevin Bowling)
1905    o Fix a comment warning and add evconfig-private.h to .gitignore
1906      (f6d66bc Kevin Bowling)
1907    o Include evconfig-private.h in internal files for great good. (0915ca0
1908      Kevin Bowling)
1909    o Backport libevent to vanilla Autoconf 2.59 (as used in RHEL5)
1910      (ad03952 Kevin Bowling)
1911    o Prefer the ./configure evconfig-private.h in MinGW, just in
1912      case. (f964b72 Kevin Bowling)
1913    o Shell hack for weird mkdir -p commands (fd7b5a8 Kevin Bowling)
1914    o Add evconfig-private to remaining files (ded0a09 Kevin Bowling)
1915    o Allow use of --enable-silent-rules for quieter compilation with
1916      automake 1.11 (f1f8514 Dave Hart)
1917    o Use "_WIN32", not WIN32: it's standard and we don't need to fake it
1918      (9f560b)
1919    o In configure, test for _WIN32 not WIN32. (85078b1 Peter Rosin)
1920    o Do not define WIN32 in Makefile.nmake (d41f3ea Peter Rosin)
1921    o Provide the autoconf m4 macros for the new OpenSSL via pkg-config
1922      stuff. (674dc3d Harlan Stenn)
1923    o Use pkg-config (if available) to handle OpenSSL. (1c63860 Harlan Stenn)
1924    o We need AM_CPPFLAGS when compiling bufferevent_openssl.c (6d2613b
1925      Harlan Stenn)
1926    o Fix OSX build: $(OPENSSL_INCS) needs to be after
1927      $(AM_CPPFLAGS). (46f1769 Zack Weinberg)
1928    o Make gcc warnings on by default, and --enable-gcc-warnings only add
1929      -Werror (d46517e Sebastian Hahn)
1930    o Split up extra-long AC_CHECK_FUNCS/HEADERS lines in configure.in (88a30ad)
1931    o Move libevent 1.x headers to include/, to put all public headers in
1932      one place. (bbea8d6)
1933    o Put #ifdef around some files to support alternate build
1934      systems. (76d4c92 Ross Lagerwall)
1935    o Also make win32select.c conditional for IDE users (bf2c5a7)
1936
1937  Debugging:
1938    o Add a magic number to debug_locks to better catch lock-coding
1939      errors. (b4a29c0 Dave Hart)
1940    o munge the debug_lock signature before freeing it: it might help us
1941      catch use-after-free (f28084d)
1942    o Added --enable-event-debugging in configure (bc7b4e4, a9c2c9a Mark Ellzey)
1943    o Debug addition for printing usec on TIMEOUT debugging. (ac43ce0 Mark Ellzey)
1944    o Added usec debug in another area for debug (3baab0d Mark Ellzey)
1945    o added timeout debug logs to include event ptr. (4b7d298 Mark Ellzey)
1946    o more event dbg updates (6727543 Mark Ellzey)
1947    o Clarify event_enable_debug_logging a little (6207826)
1948    o Make --enable-verbose-debug option match its help text (10c3450)
1949    o Add argument checks to some memory functions in `event.c'. (c8953d1
1950      Mansour Moufid)
1951
1952  Testing:
1953    o More abstraction in test.sh (cd74c4e)
1954    o Add failing test for evbuffer_search_range. (8e26154 Nir Soffer)
1955    o Tweaks to return types with end-of-buf ptrs (9ab8ab8)
1956    o Add an (internal) usleep function for use by unit tests (f25d9d3)
1957    o Synchronize with upstream tinytest (6c81be7)
1958    o Make test-changelist faster (7622d26)
1959    o Reduce the timeout in the main/fork test. (ab14f7c)
1960    o New evhttp function to adjust initial retry timeout (350a3c4)
1961    o Make regression tests run over 3x faster. (67a1763)
1962    o Use test_timeval_diff_eq more consistently (b77b43f)
1963    o Allow more slop in deferred_cb_skew test; freebsd needs it (b9f7e5f)
1964    o When including an -internal.h header outside the main tree, do so
1965      early (95e2455)
1966    o Add a new test: test-fdleak which tests for fd leaks by creating many
1967      sockets. (2ef9278 Ross Lagerwall, f7af194, 1c4288f, etc)
1968    o Add a unit test for event_base_dump_events() (7afe48a, 8d08cce)
1969    o Test more bufferevent_ratelim features (c24f91a)
1970
1971  Documentation:
1972    o Improve evbuffer_ptr documentation (261ba63)
1973    o added comments to describe refcounting of multicast chains (ba24f61
1974      Joachim Bauch)
1975    o Add doxygen for event_base_dump_events (cad5753)
1976
1977  OSX:
1978    o Use "unlimited select" on OSX so that we can have more than
1979      FD_SETSIZE fds (1fb5cc6)
1980
1981  KQueue:
1982    o Use SIG_IGN instead of a do-nothing handler for signal events with
1983      kqueue (148458e Zack Weinberg)
1984
1985  evprc:
1986    o event_rpcgen.py now prints status information to stdout and errors to
1987      stderr. (ffb0ba0 Ross Lagerwall)
1988
1989  Code improvement and refactoring:
1990    o Make event_reinit() more robust and maintainable (272033e)
1991    o Restore fast-path event_reinit() for slower backends (2c4b5de)
1992    o Check changelist as part of checking representational integrity (39b3f38)
1993    o Fix a compile warning in event_reinit (e4a56ed Sebastian Hahn)
1994    o Refactor the functions that run over every event. (c89b4e6)
1995    o Remove the last vestiges of _EVENT_USE_EVENTLIST (a3cec90)
1996    o Make event-config.h depend on Makefile.am (2958a5c)
1997
1998  Build fixes:
1999    o Don't do clang version detection when disabling some flags (083296b
2000      Sebastian Hahn)
2001
2002  C standards conformance:
2003    o Check for NULL return on win32 mm_calloc, and set ENOMEM. (af7ba69)
2004    o Convert event-config.h macros to avoid reserved identifiers (68120d9)
2005    o Generate event-config.h using the correct macros. (f82c57e)
2006    o Convert include-guard macro convention to avoid reserved identifiers
2007      (3f8c7cd)
2008    o Make event_rpcgen.py output conform to identifier conventions (372bff1)
2009    o Stop referring to an obsolete include guard in bench_http.h (5c0f7e0)
2010    o Make the generated event-config.h use correct include guards (639383a)
2011    o Fix all identifiers with names beginning with underscore. (cb9da0b)
2012    o Make event_rpcgen.py output conform to identifier conventions, more
2013      (bcefd24)
2014    o Fix some problems introduced by automated identifier cleanup script
2015      (c963534)
2016    o Have all visible internal function names end with an underscore. (8ac3c4c)
2017    o Apply the naming convention to our EVUTIL_IS* functions (c7848fa)
2018    o Clean up lingering _identifiers. (946b584)
2019    o Fix doxygen to use new macro conventions (da455e9)
2020
2021  Bugfixes:
2022    o Do not use system EAI/AI values if we are not using the system
2023      getaddrinfo. (7bcac07)
2024
2025  Sample Code:
2026    o Fix up sample/event-test.c to use newer interfaces and make it
2027      actually work. (19bab4f Ross Lagerwall)
2028    o On Unix, remove event.fifo left by sample/event-test.c. (c0dacd2 Ross
2029      Lagerwall)
2030    o Rename event-test.c to event-read-fifo.c. (a5b370a Ross Lagerwall)
2031    o event-read-fifo: Use EV_PERSIST appropriately (24dab0b)
2032
2033
2034
2035