Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Add missing const | 2007-03-21 | 1 | -2/+29 | ||
| | | | | List evhttp stuff commented out, should probably get its own man page | |||||
* | event_init() and event_dispatch() take void. Add commented out | 2007-03-21 | 1 | -3/+28 | ||
| | | | | | entries for undocumented functions to be filled in later, preferably by someone who uses libevent. | |||||
* | fix a formatting issue found by reyk; | 2007-03-21 | 1 | -12/+12 | ||
| | ||||||
* | Use arc4random() to generate random IDs. In the future we | 2007-03-21 | 2 | -3/+10 | ||
| | | | | | may want to consider using res_randomid() but since evdns.c checks for duplicates this is not strictly necessary. | |||||
* | Document event_base_free(). OK jmc@ | 2007-03-21 | 2 | -4/+11 | ||
| | ||||||
* | +.Xr evdns 3 , | 2007-03-19 | 1 | -1/+2 | ||
| | ||||||
* | further cleanup; | 2007-03-19 | 1 | -17/+16 | ||
| | ||||||
* | add MLINKS for evdns_err_to_string() and evdns_nameserver_add(); | 2007-03-19 | 1 | -1/+2 | ||
| | ||||||
* | clean up this page; | 2007-03-19 | 1 | -79/+113 | ||
| | ||||||
* | provide MLINKS for evhttp_start() and evhttp_free(); | 2007-03-19 | 1 | -1/+2 | ||
| | ||||||
* | tweaks; | 2007-03-19 | 1 | -4/+4 | ||
| | ||||||
* | Update to libevent-1.3b while retaining our local changes. beck@ OK | 2007-03-19 | 20 | -58/+6944 | ||
| | ||||||
* | Avoid double recacl when loop_once is used. | 2007-02-13 | 1 | -8/+5 | ||
| | | | | From libevent SVN via brad@. | |||||
* | Add prototype for bufferevent_base_set(). | 2007-02-13 | 1 | -1/+2 | ||
| | | | | From the libevent SVN repo, by Thorsten Glaser via brad@ | |||||
* | Two libevent fixes from the SVN repo: | 2007-02-04 | 3 | -7/+10 | ||
| | | | | | allow gotsig to terminate active event loop and evbuffer_find fix. OK brad@ pyr@ | |||||
* | 'tranfer' -> 'transfer' in comments. | 2006-12-21 | 1 | -2/+2 | ||
| | ||||||
* | fix a potential problem in multiple handling of va_list; use va_copy instead. | 2006-11-26 | 1 | -4/+10 | ||
| | | | | | | From Niels Provos via the libevent SVN, by Alejo. ok deraadt@ | |||||
* | fail without leaking memory when poll set extension fails. | 2006-11-26 | 1 | -15/+35 | ||
| | | | | | | From Niels Provos via the libevent SVN ok deraadt@ | |||||
* | allow both read and write callbacks for bufferevents to be NULL. | 2006-11-26 | 2 | -4/+11 | ||
| | | | | | | From Niels Provos via the libevent SVN ok deraadt@ | |||||
* | typo in kqueue delete. | 2006-11-05 | 1 | -2/+2 | ||
| | | | | | | From Niels Provos via the libevent SVN repo, by Bert JW. Regeer ok deraadt@ | |||||
* | fix a potential memory leak in event_once(). | 2006-11-05 | 1 | -2/+7 | ||
| | | | | | | | | From Niels Provos via the libevent SVN repo, by Scott Lamb tested by niallo@ ok deraadt@ | |||||
* | bufferevent_write() return code misdocumented; ok jmc | 2006-10-21 | 1 | -3/+5 | ||
| | ||||||
* | introduce a way to free the base. | 2006-03-30 | 6 | -9/+100 | ||
| | | | | From libevent CVS | |||||
* | use clock_gettime if available. | 2006-03-28 | 2 | -9/+32 | ||
| | | | | | | From claudio@ via libevent CVS ok claudio@ | |||||
* | new sentence, new line; | 2006-03-23 | 1 | -6/+7 | ||
| | ||||||
* | - limit the amount of data bufferevents are going to consume to something | 2006-03-18 | 4 | -13/+76 | ||
| | | | | | | | | | | | | reasonable; in some circumstances it could happen that libevent happily allocated 100MB in read buffers without telling the user; found by christopher maxwell - parts of these changes are from his patch. - allow setting an event base for bufferevents; from phil oleson - improved manpage from Phil Oleson From libevent CVS | |||||
* | typo | 2006-02-09 | 1 | -2/+2 | ||
| | ||||||
* | another fix from art. | 2006-01-25 | 3 | -7/+7 | ||
| | | | | From libevent CVS | |||||
* | add evbuffer_add_vprintf interface from artur grabowski | 2006-01-23 | 5 | -34/+48 | ||
| | | | | | | From libevent CVS ok markus@ | |||||
* | and some more links here too. | 2006-01-21 | 1 | -9/+9 | ||
| | ||||||
* | add a few missing functions. | 2006-01-21 | 1 | -6/+12 | ||
| | | | | From libevent CVS | |||||
* | do not remove kq inkernel flag before event_del gets to it; | 2005-12-20 | 1 | -4/+2 | ||
| | | | | | | From libevent CVS ok deraadt@ | |||||
* | make write-end of signal socketpair non-blocking. | 2005-12-02 | 1 | -1/+3 | ||
| | | | | | | | | | | every signal received writes 1 byte to the socketpair. if you are outside the libevent main loop too long, the socketpair might fill up. that write would then block, in a signal handler. related to this, yesterdy we changed the signal handler to not trash errno. as for the read end, there will be multiple libevent reads off the socketpair (100 bytes at a time) until the socketpair is empty again ok provos | |||||
* | pollops should be const | 2005-12-02 | 1 | -2/+2 | ||
| | ||||||
* | lookup out of evsigcaught[] must be sig_atomic_t too | 2005-12-02 | 1 | -2/+2 | ||
| | ||||||
* | save errno in signal handler since it does a system call | 2005-12-01 | 1 | -4/+8 | ||
| | | | | | only access sig_atomic_t variables, to make it further save ok aaron | |||||
* | use WANTLINT= (on all architectures) | 2005-11-24 | 1 | -1/+2 | ||
| | ||||||
* | three new .so libraries to help the ports people who need (or might need) | 2005-10-12 | 2 | -3/+3 | ||
| | | | | them for perl modules; discussion with pvalchev | |||||
* | add missing MLINK for evbuffer_readline.3 | 2005-10-11 | 1 | -2/+3 | ||
| | ||||||
* | zap trailing whitespaces, no binary change | 2005-07-02 | 7 | -20/+20 | ||
| | | | | ok brad@ beck@ | |||||
* | CDIAGFLAGS | 2005-06-22 | 1 | -1/+13 | ||
| | | | | From grunk@ | |||||
* | update to libevent 1.1a; keep local changes | 2005-06-18 | 6 | -166/+371 | ||
| | | | | ok grunk@ | |||||
* | this is libevent 1.0e | 2005-05-07 | 1 | -2/+2 | ||
| | ||||||
* | fix comment, kqueue -> {poll,select} | 2005-05-06 | 2 | -4/+4 | ||
| | ||||||
* | update to libevent 1.0d; keep local changes | 2005-05-04 | 8 | -43/+160 | ||
| | | | | | | | thanks to Alexander von Gernler for testing and some bug fixes ok mpf@ norby@ | |||||
* | - no need for .Pp before .Sh | 2005-04-22 | 1 | -5/+2 | ||
| | | | | - sometime -> sometimes | |||||
* | remove whitespace | 2005-04-22 | 1 | -13/+13 | ||
| | ||||||
* | update to libevent 1.0c; keep local changes | 2005-04-22 | 14 | -365/+1062 | ||
| | | | | | | | | | | no shared lib so no ABI/API check is necessary thanks to Alexander von Gernler for submitting another diff in an attempt to update libevent and for a use-after-free fix. ok henning@ deraadt@ | |||||
* | backout. not discussed, and very wrong. bad brad | 2005-04-19 | 14 | -1062/+365 | ||
| | ||||||
* | update to libevent 1.0c; keep local changes | 2005-04-19 | 14 | -365/+1062 | ||
| |