• Home
Name Date Size #Lines LOC

..--

android/03-May-2024-544143

compat/sys/03-May-2024-817500

linux/03-May-2024-542143

mac/03-May-2024-542141

sample/03-May-2024-733579

test/03-May-2024-6,4284,847

Android.mkD03-May-2024623 2516

ChangeLogD03-May-202415.2 KiB202188

LICENSED03-May-20241.4 KiB2522

MODULE_LICENSE_BSD_LIKED03-May-20240

Makefile.amD03-May-20243.9 KiB12573

Makefile.inD03-May-202432.8 KiB977846

NOTICED03-May-20241.4 KiB2522

READMED03-May-20241 KiB5844

README.chromiumD03-May-2024538 1714

ThirdPartyProject.propD03-May-2024160 86

aclocal.m4D03-May-2024263.1 KiB7,4996,739

autogen.shD03-May-2024208 1210

buffer.cD03-May-20249.6 KiB451295

chromium.patchD03-May-20241.5 KiB5853

config.guessD03-May-202443.8 KiB1,5271,315

config.h.inD03-May-20246.8 KiB266178

config.subD03-May-202432.6 KiB1,6591,514

configureD03-May-2024790.4 KiB26,14921,273

configure.inD03-May-20249.6 KiB396343

devpoll.cD03-May-20249.9 KiB418286

epoll.cD03-May-20248.8 KiB378272

epoll_sub.cD03-May-20241.9 KiB5321

evbuffer.cD03-May-202410.7 KiB456288

evdns.3D03-May-202411.3 KiB323322

evdns.cD03-May-202484.4 KiB3,1892,487

evdns.hD03-May-202418.5 KiB52996

event-config.hD03-May-2024614 1911

event-internal.hD03-May-20243.4 KiB10255

event.3D03-May-202417.3 KiB625624

event.cD03-May-202421.8 KiB1,007710

event.hD03-May-202436.9 KiB1,181247

event_rpcgen.pyD03-May-202444.4 KiB1,4241,141

event_tagging.cD03-May-20249.5 KiB444306

evhttp.hD03-May-202411.3 KiB372113

evport.cD03-May-202412.6 KiB514287

evrpc-internal.hD03-May-20242.8 KiB8832

evrpc.cD03-May-202415.9 KiB658440

evrpc.hD03-May-202416 KiB487167

evsignal.hD03-May-20242.1 KiB5323

evutil.cD03-May-20246.8 KiB278217

evutil.hD03-May-20245.4 KiB187130

http-internal.hD03-May-20244.3 KiB15594

http.cD03-May-202466.2 KiB2,8272,068

install-shD03-May-20244.7 KiB239152

kqueue.cD03-May-202410.8 KiB451310

libevent.gypD03-May-20242.3 KiB8683

log.cD03-May-20244.2 KiB188126

log.hD03-May-20242.1 KiB5220

ltmain.shD03-May-2024195 KiB6,9575,498

min_heap.hD03-May-20245.4 KiB150106

missingD03-May-202410.4 KiB361270

mkinstalldirsD03-May-2024719 4123

poll.cD03-May-20249 KiB380284

select.cD03-May-20248.9 KiB365270

signal.cD03-May-20249 KiB358258

strlcpy-internal.hD03-May-2024348 2417

strlcpy.cD03-May-20242.5 KiB7733

README

1To build libevent, type
2
3$ ./configure && make
4
5     (If you got libevent from the subversion repository, you will
6      first need to run the included "autogen.sh" script in order to
7      generate the configure script.)
8
9Install as root via
10
11# make install
12
13You can run the regression tests by
14
15$ make verify
16
17Before, reporting any problems, please run the regression tests.
18
19To enable the low-level tracing build the library as:
20
21CFLAGS=-DUSE_DEBUG ./configure [...]
22
23Acknowledgements:
24-----------------
25
26The following people have helped with suggestions, ideas, code or
27fixing bugs:
28
29  Alejo
30  Weston Andros Adamson
31  William Ahern
32  Stas Bekman
33  Andrew Danforth
34  Mike Davis
35  Shie Erlich
36  Alexander von Gernler
37  Artur Grabowski
38  Aaron Hopkins
39  Claudio Jeker
40  Scott Lamb
41  Adam Langley
42  Philip Lewis
43  David Libenzi
44  Nick Mathewson
45  Andrey Matveev
46  Richard Nyberg
47  Jon Oberheide
48  Phil Oleson
49  Dave Pacheco
50  Tassilo von Parseval
51  Pierre Phaneuf
52  Jon Poland
53  Bert JW Regeer
54  Dug Song
55  Taral
56
57If I have forgotten your name, please contact me.
58

README.chromium

1Name: libevent
2URL: http://www.monkey.org/~provos/libevent/
3Version: 1.4.13
4License: BSD
5
6Local Modifications:
7Rather than use libevent's own build system, we just build a Chrome
8static library using GYP.
9
101) Run configure and "make event-config.h" on a Linux, FreeBSD, and
11   Mac box and copy config.h and event-config.h to linux/, freebsd/,
12   and mac/ respectively.
132) Add libevent.gyp.
143) chromium.patch is applied to allow libevent to be used without
15   being installed.
164) The directories WIN32-Code and WIN32-Prj are not included.
17