Files
strongswan-ext/src/libcharon/plugins/kernel_libipsec/Makefile.am
T
Tobias Brunner e306fa5f73 kernel-libipsec: Add support to send/receive raw ESP packets
This is currently only supported on Linux and with the appropriate
permissions.

Since it's experimental, it's disabled by default.

The log messages for each sent and received ESP message are logged in NET
like the ones in the socket-default plugin for UDP-encapsulated messages.
2023-05-23 13:19:47 +02:00

24 lines
698 B
Makefile

AM_CPPFLAGS = \
-I$(top_srcdir)/src/libstrongswan \
-I$(top_srcdir)/src/libcharon \
-I$(top_srcdir)/src/libipsec
AM_CFLAGS = \
$(PLUGIN_CFLAGS)
if MONOLITHIC
noinst_LTLIBRARIES = libstrongswan-kernel-libipsec.la
else
plugin_LTLIBRARIES = libstrongswan-kernel-libipsec.la
endif
libstrongswan_kernel_libipsec_la_SOURCES = \
kernel_libipsec_plugin.h kernel_libipsec_plugin.c \
kernel_libipsec_ipsec.h kernel_libipsec_ipsec.c \
kernel_libipsec_router.h kernel_libipsec_router.c \
kernel_libipsec_esp_handler.h kernel_libipsec_esp_handler.c
libstrongswan_kernel_libipsec_la_LIBADD = $(top_builddir)/src/libipsec/libipsec.la
libstrongswan_kernel_libipsec_la_LDFLAGS = -module -avoid-version