diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2012-02-10 13:57:27 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-02-10 14:06:23 +0100 |
commit | f37b7823e521f7989f8f35b5182330335ac9e530 (patch) | |
tree | 2b1f4acf0ecea34fb702c108a749b2765086b5d2 /package | |
parent | 2e727571cc41a2a20cdea42998ae2739e4cce11b (diff) |
ipsec-tools: add option for dead peer detection support
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package')
-rw-r--r-- | package/ipsec-tools/Config.in | 5 | ||||
-rw-r--r-- | package/ipsec-tools/ipsec-tools.mk | 6 |
2 files changed, 11 insertions, 0 deletions
diff --git a/package/ipsec-tools/Config.in b/package/ipsec-tools/Config.in index 8a5f3d1e4..d4c62c601 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 9781f3bea..d7f8e3551 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 |