Branch :
| Author | Commit | Date | CI | Message |
|---|---|---|---|---|
| 56f3bdef | 2018-11-13 23:23:09 | s/http-server: check for EVTHREAD_USE_WINDOWS_THREADS_IMPLEMENTED | ||
| bdd71f18 | 2018-11-13 10:48:41 | s/http-server: graceful cleanup | ||
| 41b6b279 | 2018-11-13 10:26:17 | s/http-server: enable debug logging if EVENT_DEBUG_LOGGING_ALL env isset | ||
| 3c8ded5c | 2018-11-08 11:19:16 | s/http-server: turn off buffering (otherwise do output on win32) | ||
| 5d3f9d4d | 2018-11-08 11:13:21 | s/http-server: add an option to use IOCP | ||
| ed705ba7 | 2018-11-13 10:33:24 | s/http-server: add options (for persistent port) | ||
| 855f0804 | 2018-08-09 14:47:17 | dns-example: free result in getaddrinfo callback According to evdns.c, the result not freed by libevent after the callback runs: evdns_getaddrinfo_gotresolve() { ... data->user_cb(0, data->pending_result, data->user_data); data->pending_result = NULL; ... } To reproduce, build with -fsanitize=address, add -g to the getopt list in dns-example.c like in the current commit and run dns-example -g google.com Closes: #681 # cherry-picked | ||
| 28b80754 | 2018-04-02 13:18:27 | Fix build with LibreSSL 2.7 LibreSSL 2.7 implements OpenSSL 1.1 API except for BIO_get_init() See also: https://bugs.freebsd.org/226900 Signed-off-by: Bernard Spil <brnrd@FreeBSD.org> Closes: #617 (cherry-pick) | ||
| c2c08e02 | 2017-11-22 10:33:15 | Add missing includes into openssl-compat.h Before it depends from the caller #include appropriate headers (at least for OPENSSL_VERSION_NUMBER), but let's make it independent. Fixes: #574 | ||
| 33e363f3 | 2017-11-20 02:07:54 | Free dns/event bases in dns-example to avoid leaks |