summaryrefslogtreecommitdiff
path: root/lib/libevent
AgeCommit message (Collapse)Author
2008-05-02- Use a const pointer for bufferevent_write.Brad Smith
- Make event_init return struct event_base *. From the libevent SVN repo. ok millert@
2008-05-02- Increment MAX_ADDRS in evdns so as to be quite large.Brad Smith
- Accept as well-formed DNS replies with questions but no answers. - Fix for crash in evdns_resolve_reverse_ipv6(). - Move end of "extern C {" block to the end of evdns.h. From the libevent SVN repo. ok millert@
2008-05-02Makefile: sort MLINKS and add event_base_once.3Jason McIntyre
event.3: fix NAME and remove spurious blank line
2008-05-02Update to libevent 1.3e while retaining our local changes.Brad Smith
"No objection" millert@ "the diff looks and works fine" reyk@
2007-09-02use calloc() to avoid malloc(n * m) overflows; checked by djm canacar jsgTheo de Raadt
2007-06-04Remove evhttp leftover, okay millert@Pedro Martelletto
2007-05-31convert to new .Dd format;Jason McIntyre
2007-03-26do not doc the http partsTheo de Raadt
2007-03-26do not ship the http parts for now; ok millertTheo de Raadt
2007-03-22nicer MLINKS chunkTheo de Raadt
2007-03-21Add missing constTodd C. Miller
List evhttp stuff commented out, should probably get its own man page
2007-03-21event_init() and event_dispatch() take void. Add commented outTodd C. Miller
entries for undocumented functions to be filled in later, preferably by someone who uses libevent.
2007-03-21fix a formatting issue found by reyk;Jason McIntyre
2007-03-21Use arc4random() to generate random IDs. In the future weTodd C. Miller
may want to consider using res_randomid() but since evdns.c checks for duplicates this is not strictly necessary.
2007-03-21Document event_base_free(). OK jmc@Todd C. Miller
2007-03-19+.Xr evdns 3 ,Jason McIntyre
2007-03-19further cleanup;Jason McIntyre
2007-03-19add MLINKS for evdns_err_to_string() and evdns_nameserver_add();Jason McIntyre
2007-03-19clean up this page;Jason McIntyre
2007-03-19provide MLINKS for evhttp_start() and evhttp_free();Jason McIntyre
2007-03-19tweaks;Jason McIntyre
2007-03-19Update to libevent-1.3b while retaining our local changes. beck@ OKTodd C. Miller
2007-02-13Avoid double recacl when loop_once is used.Todd C. Miller
From libevent SVN via brad@.
2007-02-13Add prototype for bufferevent_base_set().Todd C. Miller
From the libevent SVN repo, by Thorsten Glaser via brad@
2007-02-04Two libevent fixes from the SVN repo:Todd C. Miller
allow gotsig to terminate active event loop and evbuffer_find fix. OK brad@ pyr@
2006-12-21'tranfer' -> 'transfer' in comments.Kenneth R Westerback
2006-11-26fix a potential problem in multiple handling of va_list; use va_copy instead.Brad Smith
From Niels Provos via the libevent SVN, by Alejo. ok deraadt@
2006-11-26fail without leaking memory when poll set extension fails.Brad Smith
From Niels Provos via the libevent SVN ok deraadt@
2006-11-26allow both read and write callbacks for bufferevents to be NULL.Brad Smith
From Niels Provos via the libevent SVN ok deraadt@
2006-11-05typo in kqueue delete.Brad Smith
From Niels Provos via the libevent SVN repo, by Bert JW. Regeer ok deraadt@
2006-11-05fix a potential memory leak in event_once().Brad Smith
From Niels Provos via the libevent SVN repo, by Scott Lamb tested by niallo@ ok deraadt@
2006-10-21bufferevent_write() return code misdocumented; ok jmcTheo de Raadt
2006-03-30introduce a way to free the base.Brad Smith
From libevent CVS
2006-03-28use clock_gettime if available.Brad Smith
From claudio@ via libevent CVS ok claudio@
2006-03-23new sentence, new line;Jason McIntyre
2006-03-18- limit the amount of data bufferevents are going to consume to somethingBrad Smith
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
2006-02-09typoBrad Smith
2006-01-25another fix from art.Brad Smith
From libevent CVS
2006-01-23add evbuffer_add_vprintf interface from artur grabowskiBrad Smith
From libevent CVS ok markus@
2006-01-21and some more links here too.Brad Smith
2006-01-21add a few missing functions.Brad Smith
From libevent CVS
2005-12-20do not remove kq inkernel flag before event_del gets to it;Brad Smith
From libevent CVS ok deraadt@
2005-12-02make write-end of signal socketpair non-blocking.Theo de Raadt
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
2005-12-02pollops should be constTheo de Raadt
2005-12-02lookup out of evsigcaught[] must be sig_atomic_t tooTheo de Raadt
2005-12-01save errno in signal handler since it does a system callTheo de Raadt
only access sig_atomic_t variables, to make it further save ok aaron
2005-11-24use WANTLINT= (on all architectures)Theo de Raadt
2005-10-12three new .so libraries to help the ports people who need (or might need)Theo de Raadt
them for perl modules; discussion with pvalchev
2005-10-11add missing MLINK for evbuffer_readline.3Jason McIntyre
2005-07-02zap trailing whitespaces, no binary changeAlexander von Gernler
ok brad@ beck@