kc3-lang/libevent

Branch :


Log

Author Commit Date CI Message
83e58ccd 2012-02-10 18:39:31 Update the credits in the readme
0cdbd642 2012-02-10 18:36:10 Finalize the changelog
e49e2891 2012-02-10 17:29:53 Update copyright notices to 2012
8152b4c2 2012-02-10 16:49:05 Bump version to 2.0.17-stable
5d7bfa15 2012-02-10 11:24:51 In the kqueue backend, do not report EBADF as an EV_READ We were doing this because of (correct) reports that NetBSD gives an EBADF when you try to add the write side of a pipe for which the read side has been closed. But on most kqueue platforms, that doesn't happen, and on *all* kqueue platforms, reporting a nonexistent fd (which we usually have if we have seen EBADF) as readable tends to give programs a case of the vapors. Nicholas Marriott wrote the original patch here; I did the comment fixes.
19715a60 2012-02-09 15:07:19 Avoid crash when freeing event_iocp and using event_set_mem_functions There was a calloc that needed to be an mm_calloc. Reported by "fffvvvzz" on sourceforge. Ticket 3486114
6f6cebe3 2012-02-06 21:18:25 Bring the changelog up to date
5b4b8126 2012-02-06 12:24:49 Loop on filtering SSL reads until we are blocked or exhausted. This is not a perfect fix, but it's much much better than the current buggy behavior, which could lead to filtering SSL connections that just stopped reading. Based on ideas by Maseeb Abdul Qadir and Mark Ellzey.
d84d9170 2011-11-21 09:41:55 Use C-style comments in C source files (for compatibility with compilers such as xlc on AIX).
d6094b16 2012-02-01 14:56:43 evdns: fix a bug in circular-queue implementation found by Wang Qin