summaryrefslogtreecommitdiffstats
path: root/lib/libevent/event.3 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Document bufferevent_setwatermark(). Initial diff from Geoff Hill on tech@ withanton2018-09-231-2/+30
| | | | | | some tweaks. With feedback and ok jmc@
* Mention some missing libevent macros.rob2018-07-261-3/+20
| | | | ok jmc@, benno@, "yes" deraadt@
* take const off the timeval argument in the pending functions.dlg2017-06-291-5/+5
| | | | | | | | event_pending, evtimer_pending, and signal_pending all write to the timeval because that's how they tell the caller when the event is meant to fire. ok deraadt@ millert@ jmc@ schwarze@
* Talk about event API instead of libeventstefan2016-07-171-6/+8
| | | | | Avoids inconsistent capitalization of libevent at start of sentence suggested by and ok jmc@, ok bluhm@
* update NAME section to include all documented functions,jmc2015-11-101-3/+3
| | | | | | or otherwise change Dt to reflect the name of an existing function; feedback/ok schwarze
* Another couple of commas in the wrong place, ok jmcnicm2015-04-141-2/+2
|
* Remove an extra comma pointed out by jmc@.nicm2015-04-141-2/+2
|
* Reorder prototypes to better match manpage layout and add some missingnicm2015-04-141-57/+57
| | | | argument names, from Fabian Raetz. ok deraadt
* might help to Xr evbuffer_new 3dlg2014-11-201-2/+3
|
* use .In to specify includes.dlg2014-11-191-3/+3
|
* i got sick of having to read the source code to know what thedlg2014-11-191-34/+1
| | | | | | | | | | | | | | | evbuffer_foo functions do. reyk, nicm, jmc, and schwarze seem to support a manpage as a reasonable solution to this problem. im putting this in a separate manpage because i find they get too cumbersome when they get too big. ingo agrees (and suggests even this might be too big). the file is evbuffer_new.3 rather than evbuffer.3 because we document functions. ok reyk@ nicm@ jmc@ schwarze@ this is rough, everyone has tweaks coming.
* BUGS is no longer relevant, according to nicm;jmc2014-11-191-8/+2
|
* sort SEE ALSO;jmc2014-04-031-2/+2
|
* add helper functions to use asr with libevent.eric2014-04-031-3/+30
| | | | ok deraadt@
* tweak previous; ok nicmjmc2010-04-221-10/+11
|
* Update libevent to 1.4.13.nicm2010-04-211-168/+88
| | | | | | | | | | | | | This is the core library only, the DNS parts are removed and it does not include the other extra bits (HTTP, DNS, and RPC), a separate port for these will appear in due course. Thanks to jsg, sthen, alek, gilles, jacekm, bernd and any others I've forgotten for testing/comments. Note that /usr/include/evdns.h should be removed after updating. ok deraadt
* - Use a const pointer for bufferevent_write.brad2008-05-021-2/+2
| | | | | | | | - Make event_init return struct event_base *. From the libevent SVN repo. ok millert@
* Makefile: sort MLINKS and add event_base_once.3jmc2008-05-021-3/+2
| | | | event.3: fix NAME and remove spurious blank line
* Update to libevent 1.3e while retaining our local changes.brad2008-05-021-2/+6
| | | | | "No objection" millert@ "the diff looks and works fine" reyk@
* convert to new .Dd format;jmc2007-05-311-2/+2
|
* do not doc the http partsderaadt2007-03-261-24/+24
|
* Add missing constmillert2007-03-211-2/+29
| | | | List evhttp stuff commented out, should probably get its own man page
* event_init() and event_dispatch() take void. Add commented outmillert2007-03-211-3/+28
| | | | | entries for undocumented functions to be filled in later, preferably by someone who uses libevent.
* Document event_base_free(). OK jmc@millert2007-03-211-2/+9
|
* +.Xr evdns 3 ,jmc2007-03-191-1/+2
|
* tweaks;jmc2007-03-191-4/+4
|
* Update to libevent-1.3b while retaining our local changes. beck@ OKmillert2007-03-191-4/+32
|
* allow both read and write callbacks for bufferevents to be NULL.brad2006-11-261-1/+3
| | | | | | From Niels Provos via the libevent SVN ok deraadt@
* bufferevent_write() return code misdocumented; ok jmcderaadt2006-10-211-3/+5
|
* new sentence, new line;jmc2006-03-231-6/+7
|
* - limit the amount of data bufferevents are going to consume to somethingbrad2006-03-181-6/+28
| | | | | | | | | | | | 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
* another fix from art.brad2006-01-251-2/+2
| | | | From libevent CVS
* add evbuffer_add_vprintf interface from artur grabowskibrad2006-01-231-1/+4
| | | | | | From libevent CVS ok markus@
* add a few missing functions.brad2006-01-211-6/+12
| | | | From libevent CVS
* update to libevent 1.1a; keep local changesbrad2005-06-181-3/+3
| | | | ok grunk@
* update to libevent 1.0d; keep local changesbrad2005-05-041-5/+9
| | | | | | | thanks to Alexander von Gernler for testing and some bug fixes ok mpf@ norby@
* - no need for .Pp before .Shjmc2005-04-221-5/+2
| | | | - sometime -> sometimes
* remove whitespacebrad2005-04-221-13/+13
|
* update to libevent 1.0c; keep local changesbrad2005-04-221-4/+75
| | | | | | | | | | 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 bradderaadt2005-04-191-75/+4
|
* update to libevent 1.0c; keep local changesbrad2005-04-191-4/+75
|
* use "volatile sig_atomic_t" types instead of "int" for signal flags.reyk2005-04-131-2/+2
| | | | ok deraadt@ henning@ provos
* authorative->authoritativejolan2005-02-021-2/+2
|
* various tweaks;jmc2004-04-281-19/+15
|
* update to libevent 0.8; keep local changesbrad2004-04-281-7/+133
| | | | ok markus@
* add support for poll(2); ok deraadtmarkus2003-09-231-4/+7
|
* update to libevent-0.7a.tar.gz; keep local changesmarkus2003-07-091-2/+11
|
* license cleaning.art2003-06-031-5/+2
|
* - typosjmc2003-05-231-16/+16
| | | | | - whitespace at EOL - new sentence, new line
* SEE ALSO corrections. millert ok.fgsch2002-11-101-3/+3
|