├── .gitignore ├── README.md ├── WIN32-Code ├── config.h ├── event-config.h ├── tree.h └── win32.c ├── buffer.c ├── compat └── sys │ ├── _libevent_time.h │ └── queue.h ├── config.h ├── devpoll.c ├── epoll.c ├── epoll_sub.c ├── evbuffer.c ├── evdns.c ├── evdns.h ├── event-internal.h ├── event.c ├── event.h ├── event_rpcgen.py ├── event_tagging.c ├── evhttp.h ├── evport.c ├── evrpc-internal.h ├── evrpc.c ├── evrpc.h ├── evsignal.h ├── evutil.c ├── evutil.h ├── http-internal.h ├── http.c ├── kqueue.c ├── log.c ├── log.h ├── m4 ├── libtool.m4 ├── ltoptions.m4 ├── ltsugar.m4 ├── ltversion.m4 └── lt~obsolete.m4 ├── min_heap.h ├── poll.c ├── sample ├── Makefile.am ├── Makefile.in ├── event-test.c ├── signal-test.c └── time-test.c ├── select.c ├── signal.c ├── strlcpy-internal.h ├── strlcpy.c └── test ├── Makefile.am ├── Makefile.in ├── Makefile.nmake ├── bench.c ├── regress.c ├── regress.gen.c ├── regress.gen.h ├── regress.h ├── regress.rpc ├── regress_dns.c ├── regress_http.c ├── regress_rpc.c ├── test-eof.c ├── test-init.c ├── test-time.c ├── test-weof.c └── test.sh /.gitignore: -------------------------------------------------------------------------------- 1 | /WIN32-Prj 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/README.md -------------------------------------------------------------------------------- /WIN32-Code/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/WIN32-Code/config.h -------------------------------------------------------------------------------- /WIN32-Code/event-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/WIN32-Code/event-config.h -------------------------------------------------------------------------------- /WIN32-Code/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/WIN32-Code/tree.h -------------------------------------------------------------------------------- /WIN32-Code/win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/WIN32-Code/win32.c -------------------------------------------------------------------------------- /buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/buffer.c -------------------------------------------------------------------------------- /compat/sys/_libevent_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/compat/sys/_libevent_time.h -------------------------------------------------------------------------------- /compat/sys/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/compat/sys/queue.h -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/config.h -------------------------------------------------------------------------------- /devpoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/devpoll.c -------------------------------------------------------------------------------- /epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/epoll.c -------------------------------------------------------------------------------- /epoll_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/epoll_sub.c -------------------------------------------------------------------------------- /evbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/evbuffer.c -------------------------------------------------------------------------------- /evdns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/evdns.c -------------------------------------------------------------------------------- /evdns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/evdns.h -------------------------------------------------------------------------------- /event-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/event-internal.h -------------------------------------------------------------------------------- /event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/event.c -------------------------------------------------------------------------------- /event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/event.h -------------------------------------------------------------------------------- /event_rpcgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/event_rpcgen.py -------------------------------------------------------------------------------- /event_tagging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/event_tagging.c -------------------------------------------------------------------------------- /evhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/evhttp.h -------------------------------------------------------------------------------- /evport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/evport.c -------------------------------------------------------------------------------- /evrpc-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/evrpc-internal.h -------------------------------------------------------------------------------- /evrpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/evrpc.c -------------------------------------------------------------------------------- /evrpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/evrpc.h -------------------------------------------------------------------------------- /evsignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/evsignal.h -------------------------------------------------------------------------------- /evutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/evutil.c -------------------------------------------------------------------------------- /evutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/evutil.h -------------------------------------------------------------------------------- /http-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/http-internal.h -------------------------------------------------------------------------------- /http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/http.c -------------------------------------------------------------------------------- /kqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/kqueue.c -------------------------------------------------------------------------------- /log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/log.c -------------------------------------------------------------------------------- /log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/log.h -------------------------------------------------------------------------------- /m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/m4/libtool.m4 -------------------------------------------------------------------------------- /m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/m4/ltoptions.m4 -------------------------------------------------------------------------------- /m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/m4/ltsugar.m4 -------------------------------------------------------------------------------- /m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/m4/ltversion.m4 -------------------------------------------------------------------------------- /m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /min_heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/min_heap.h -------------------------------------------------------------------------------- /poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/poll.c -------------------------------------------------------------------------------- /sample/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/sample/Makefile.am -------------------------------------------------------------------------------- /sample/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/sample/Makefile.in -------------------------------------------------------------------------------- /sample/event-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/sample/event-test.c -------------------------------------------------------------------------------- /sample/signal-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/sample/signal-test.c -------------------------------------------------------------------------------- /sample/time-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/sample/time-test.c -------------------------------------------------------------------------------- /select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/select.c -------------------------------------------------------------------------------- /signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/signal.c -------------------------------------------------------------------------------- /strlcpy-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/strlcpy-internal.h -------------------------------------------------------------------------------- /strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/strlcpy.c -------------------------------------------------------------------------------- /test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/test/Makefile.am -------------------------------------------------------------------------------- /test/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/test/Makefile.in -------------------------------------------------------------------------------- /test/Makefile.nmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/test/Makefile.nmake -------------------------------------------------------------------------------- /test/bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/test/bench.c -------------------------------------------------------------------------------- /test/regress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/test/regress.c -------------------------------------------------------------------------------- /test/regress.gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/test/regress.gen.c -------------------------------------------------------------------------------- /test/regress.gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/test/regress.gen.h -------------------------------------------------------------------------------- /test/regress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/test/regress.h -------------------------------------------------------------------------------- /test/regress.rpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/test/regress.rpc -------------------------------------------------------------------------------- /test/regress_dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/test/regress_dns.c -------------------------------------------------------------------------------- /test/regress_http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/test/regress_http.c -------------------------------------------------------------------------------- /test/regress_rpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/test/regress_rpc.c -------------------------------------------------------------------------------- /test/test-eof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/test/test-eof.c -------------------------------------------------------------------------------- /test/test-init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/test/test-init.c -------------------------------------------------------------------------------- /test/test-time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/test/test-time.c -------------------------------------------------------------------------------- /test/test-weof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/test/test-weof.c -------------------------------------------------------------------------------- /test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saosir/libevent-comment/HEAD/test/test.sh --------------------------------------------------------------------------------