]> granicus.if.org Git - libevent/shortlog
libevent
2009-11-17 Nick MathewsonNever pass our weird flags to the system getaddrinfo...
2009-11-17 Nick MathewsonOpenBSD demands that sys/types.h be included before...
2009-11-17 Nick MathewsonWindows *does* have getservbyname, no matter what autoc...
2009-11-16 Nick MathewsonAdd two implementations of getaddrinfo: one blocking...
2009-11-16 Nick MathewsonRemove the stupid brokenness where DNS option names...
2009-11-16 Nick MathewsonFix a declaration of __func__ in rpcgen.
2009-11-15 Nick MathewsonPrefer calloc(a,b) to malloc(a*b). via openbsd.
2009-11-15 Nick MathewsonWhen running set[ug]id, don't check the environment.
2009-11-15 Nick MathewsonUse arc4random() for dns transaction ids where availabl...
2009-11-14 Nick MathewsonFix a couple of event_debug calls.
2009-11-09 Nick MathewsonChange event_base.activequeues to "array of eventlist".
2009-11-09 Nick MathewsonChange an OOM err to a warn in event_tagging.c
2009-11-09 Nick MathewsonChange an err to a warn in bufferevent_openssl
2009-11-09 Nick MathewsonPatch from Ryan Phillips: accept ipv6 addresses returne...
2009-11-09 Nick MathewsonUnit tests for got_break and got_exit.
2009-11-09 Nick MathewsonMake persistent timeouts more accurate.
2009-11-09 Nick MathewsonMake sure that common timeouts are inserted in-order.
2009-11-09 Nick MathewsonAdd an option to disable the timeval cache.
2009-11-09 Nick MathewsonImplement queued timeouts for case where many timeouts...
2009-11-06 Nick MathewsonWe do not work any more without an event-config.h;...
2009-11-06 Nick MathewsonFix kqueue.c build on GNU/kFreeBSD systems.
2009-11-06 Nick MathewsonFix a miscalculated realloc() size in win32select.c.
2009-11-05 Nick MathewsonActually add the new dns-example.c code. :p
2009-11-05 Nick MathewsonMove the evdns sample code into the sample directory...
2009-11-05 Nick MathewsonFix some build warnings on MSVC, mostly related to...
2009-11-05 Nick MathewsonExport nmakefiles in source distribution.
2009-11-05 Nick MathewsonAdd nmake files to build with MSVC.
2009-11-05 Nick MathewsonBuild fixes for MSVC
2009-11-05 Nick MathewsonRename win32.c to win32select.c, and take it out of...
2009-11-05 Nick MathewsonFix another ssize_t user
2009-11-05 Nick MathewsonRemove win32-code/config.h. It was apparently confusing.
2009-11-05 Nick MathewsonFix a few types to use compatible versions
2009-11-04 Nick MathewsonImplement size limits on HTTP header length and body...
2009-11-04 Nick MathewsonCommit ConnectEx code to get connect working with async...
2009-11-04 Nick MathewsonAdd a missing include for win32.
2009-11-03 Nick MathewsonOops; add missing bufferevent_evdns.c file
2009-11-03 Nick MathewsonAdd a bufferevent function to resolve a name then conne...
2009-11-03 Nick MathewsonFix one IOCP-callback signature I missed
2009-11-03 Nick MathewsonRemove compat/sys/_time.h
2009-11-02 Nick MathewsonFix remaining AcceptEx issues.
2009-11-02 Nick MathewsonClean up acceptex code some more: add locking, single...
2009-11-02 Nick MathewsonRefactor IOCP callback interface
2009-11-02 Nick MathewsonCompilation and correctness fixes for IOCP listener...
2009-11-02 Nick MathewsonFix a major parenthesis bug in EVUTIL_UPCAST.
2009-11-02 Nick MathewsonAdd more IOCP tests. They might not pass yet.
2009-11-02 Nick MathewsonMore refactoring for IOCP listener code
2009-11-02 Nick MathewsonCall the bufferevent_flush_mode variable "mode" more...
2009-11-02 Nick MathewsonFix an errant user of ssize_t to use ev_ssize_t.
2009-10-30 Nick MathewsonRemove some duplicate code in kqueue.c and fix a small...
2009-10-30 Nick MathewsonAdd a "many events" regression test.
2009-10-30 Nick MathewsonKeep openssl errors associated with the right buffereve...
2009-10-29 Nick MathewsonRefactor evconnlistener to allow multiple implementatio...
2009-10-29 Nick MathewsonExtract XP-only functions when initializing the IOCP...
2009-10-29 Nick Mathewsonreformat weird indentation in dns tests
2009-10-29 Nick MathewsonUnit test for reverse ipv6 lookup
2009-10-29 Nick MathewsonMore documentation and unit tests for event_tagging.
2009-10-29 Nick MathewsonActually use the logic in select.c designed to make...
2009-10-29 Nick MathewsonUnit test for strlcpy
2009-10-27 Nick MathewsonFix from Chris Davis: get error-logging to be happy...
2009-10-27 Nick MathewsonAvoid calling exit() during event_base_new*()
2009-10-27 Nick MathewsonDo not call the locking variant of event_add or event_a...
2009-10-27 Nick MathewsonRefactor event_assing even more to avoid unnecessary...
2009-10-27 Nick MathewsonGive event_assign a return value, and make it less...
2009-10-27 Nick MathewsonDo not add a newline to the end of log statements.
2009-10-27 Nick MathewsonRefactor kq_init error handling.
2009-10-27 Nick MathewsonNew test flag to suppress logging for one test.
2009-10-26 Nick MathewsonNote assert-related change in changelog
2009-10-26 Nick MathewsonUse EVUTIL_ASSERT() consistently instead of assert.
2009-10-26 Nick MathewsonAdd an EVUTIL_ASSERT() to replace our calls to assert().
2009-10-26 Nick MathewsonAPI to replace all calls to exit() with a user-supplied...
2009-10-23 Nick MathewsonTweaks to IOCP interface.
2009-10-23 Nick MathewsonFix my fix for the bufferevent_connect_fail() test.
2009-10-23 Nick MathewsonExpose a narrow window to the IOCP code.
2009-10-23 Nick MathewsonImprove the behavior of le-proxy in a few cases.
2009-10-21 Nick MathewsonMake the bufferevent_connect_fail test faster on OSX.
2009-10-21 Nick MathewsonTreat the bitwise OR of two enum values as an int.
2009-10-21 Nick MathewsonTest failing case of bufferevent_connect().
2009-10-21 Nick MathewsonFix win32 connect() event handling.
2009-10-21 Nick MathewsonOSX compilation issues
2009-10-21 Nick MathewsonRemove an EVBASE_RELEASE_LOCK that I missed.
2009-10-21 Nick MathewsonFix win32 compilation.
2009-10-21 Nick MathewsonAdd locking to event_base_loop.
2009-10-21 Nick MathewsonFix windows compilation warnings.
2009-10-19 Niels ProvosFix compilation for listener.h for C++ - missing extern...
2009-10-16 Nick MathewsonAdd a note that we should change previous_to_last to...
2009-10-16 Nick MathewsonCorrect the signatures for the evmap_io_* functions...
2009-10-16 Nick MathewsonSpelling fixes in comments and strings.
2009-10-14 Nick MathewsonWhen a bufferevent_connect() call fails, give the clien...
2009-10-14 Nick MathewsonFix some crash bugs when initializing evdns
2009-10-12 Nick MathewsonDeclare struct timezone in util.h so that borken mingw...
2009-10-02 Nick MathewsonAdd changelog for last commit
2009-10-02 Nick MathewsonDo not notify the main thread more than needed.
2009-10-01 Nick MathewsonApply Ka-Hing Cheung's event_base_got_[break|exit]...
2009-09-24 Niels ProvosDo not drop data from evbuffer when out of memory;...
2009-09-23 Nick MathewsonForward-port: fix android compilation
2009-09-16 Nick MathewsonFix the assert I added to epoll.c: spotted by Dmitry...
2009-09-11 Nick MathewsonTreat events with fd == -1 as addable.
2009-09-11 Nick MathewsonMake epoll use less RAM.
2009-09-11 Nick MathewsonAdd a trivial race-fix from Chromium: do not try to...
2009-09-11 Nick MathewsonTreat a negative number of bytes to read as the kernel...
next