Currently, only expiration of IPsec SAs is supported. Later other events for e.g. acquires or changed NAT endpoints could be added.
28 lines
453 B
Makefile
28 lines
453 B
Makefile
ipseclib_LTLIBRARIES = libipsec.la
|
|
|
|
libipsec_la_SOURCES = \
|
|
ipsec.c ipsec.h \
|
|
esp_context.c esp_context.h \
|
|
esp_packet.c esp_packet.h \
|
|
ipsec_event_listener.h \
|
|
ipsec_event_relay.c ipsec_event_relay.h \
|
|
ipsec_sa.c ipsec_sa.h \
|
|
ipsec_sa_mgr.c ipsec_sa_mgr.h
|
|
|
|
libipsec_la_LIBADD =
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir)/src/libstrongswan
|
|
|
|
EXTRA_DIST = Android.mk
|
|
|
|
# build optional plugins
|
|
########################
|
|
|
|
if MONOLITHIC
|
|
SUBDIRS =
|
|
else
|
|
SUBDIRS = .
|
|
endif
|
|
|