Branch :
| Author | Commit | Date | CI | Message |
|---|---|---|---|---|
| 60f8f729 | 2014-08-29 14:59:17 | Consistently check for failure from evbuffer_pullup() Closes issue #148. | ||
| e49e2891 | 2012-02-10 17:29:53 | Update copyright notices to 2012 | ||
| 3c824bd3 | 2011-10-24 13:18:09 | Update copyright dates to 2011. | ||
| 545a6114 | 2010-11-01 13:59:04 | Fix even more win64 warnings: buffer, event_tagging, http, evdns, evrpc | ||
| f2763fa8 | 2010-10-14 13:16:00 | add limits.h to event_tagging.c so opensolaris will build | ||
| 9c8db0f8 | 2010-09-23 22:45:55 | Fix all warnings in the main codebase flagged by -Wsigned-compare Remember, the code int is_less_than(int a, unsigned b) { return a < b; } is buggy, since the C integer promotion rules basically turn it into int is_less_than(int a, unsigned b) { return ((unsigned)a) < b; } and we really want something closer to int is_less_than(int a, unsigned b) { return a < 0 || ((unsigned)a) < b; } . Suggested by an example from Ralph Castain | ||
| ec347b92 | 2010-07-07 16:45:03 | Move event-config.h to include/event2 This change means that all required include files are in event2, and all files not in event2/* are optional. | ||
| 17efc1cd | 2010-03-04 01:25:51 | Update all our copyright notices to say "2010" | ||
| cdf58009 | 2009-11-09 19:37:21 | Change an OOM err to a warn in event_tagging.c svn:r1524 | ||
| 784b8773 | 2009-11-06 21:46:57 | We do not work any more without an event-config.h; stop pretending that it is meaningful to check for HAVE_CONFIG_H svn:r1516 |