mirror of
https://github.com/libevent/libevent.git
synced 2025-01-09 00:56:20 +08:00
709c21c48c
This code adds a new Bufferevent type that is only compiled when the openssl library is present. It supports using an SSL object and an event alert mechanism, which can either be an fd or an underlying bufferevent. There is still more work to do: the unit tests are incomplete, and we need to support flush and shutdown much better. Sometimes events are generated needlessly: this will hose performance. There's a new encrypting proxy in sample/le-proxy.c. This code has only been tested on OSX, and nowhere else. svn:r1382
32 lines
630 B
Makefile
32 lines
630 B
Makefile
AUTOMAKE_OPTIONS = foreign
|
|
|
|
EVENT2_EXPORT = \
|
|
event2/buffer.h \
|
|
event2/buffer_compat.h \
|
|
event2/bufferevent.h \
|
|
event2/bufferevent_compat.h \
|
|
event2/bufferevent_ssl.h \
|
|
event2/bufferevent_struct.h \
|
|
event2/dns.h \
|
|
event2/dns_compat.h \
|
|
event2/dns_struct.h \
|
|
event2/event.h \
|
|
event2/event_compat.h \
|
|
event2/event_struct.h \
|
|
event2/http.h \
|
|
event2/http_compat.h \
|
|
event2/http_struct.h \
|
|
event2/listener.h \
|
|
event2/rpc.h \
|
|
event2/rpc_compat.h \
|
|
event2/rpc_struct.h \
|
|
event2/tag.h \
|
|
event2/tag_compat.h \
|
|
event2/thread.h \
|
|
event2/util.h
|
|
|
|
EXTRA_SRC = $(EVENT2_EXPORT)
|
|
|
|
nobase_include_HEADERS = $(EVENT2_EXPORT)
|
|
|