From: Peter Korsgaard Date: Fri, 10 Feb 2012 12:57:27 +0000 (+0100) Subject: ipsec-tools: add option for dead peer detection support X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f37b7823e521f7989f8f35b5182330335ac9e530;p=buildroot.git ipsec-tools: add option for dead peer detection support Signed-off-by: Peter Korsgaard --- diff --git a/package/ipsec-tools/Config.in b/package/ipsec-tools/Config.in index 8a5f3d1e41..d4c62c6013 100644 --- a/package/ipsec-tools/Config.in +++ b/package/ipsec-tools/Config.in @@ -33,6 +33,11 @@ config BR2_PACKAGE_IPSEC_TOOLS_FRAG Enable IKE fragmentation, which is a workaround for broken routers that drop fragmented packets +config BR2_PACKAGE_IPSEC_TOOLS_DPD + bool "Enable DPD (Dead Peer Detection)" + help + Enable dead peer detection support + config BR2_PACKAGE_IPSEC_TOOLS_STATS default y bool "Enable statistics logging function." diff --git a/package/ipsec-tools/ipsec-tools.mk b/package/ipsec-tools/ipsec-tools.mk index 9781f3bea2..d7f8e35516 100644 --- a/package/ipsec-tools/ipsec-tools.mk +++ b/package/ipsec-tools/ipsec-tools.mk @@ -38,6 +38,12 @@ else IPSEC_TOOLS_CONF_OPT+= --disable-frag endif +ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_DPD), y) +IPSEC_TOOLS_CONF_OPT+= --enable-dpd +else +IPSEC_TOOLS_CONF_OPT+= --disable-dpd +endif + ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_STATS), y) IPSEC_TOOLS_CONF_OPT+= --enable-stats else