mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-27 21:26:36 +00:00
ipsec-tools: add option for dead peer detection support
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
2e727571cc
commit
f37b7823e5
@ -33,6 +33,11 @@ config BR2_PACKAGE_IPSEC_TOOLS_FRAG
|
|||||||
Enable IKE fragmentation, which is a workaround for
|
Enable IKE fragmentation, which is a workaround for
|
||||||
broken routers that drop fragmented packets
|
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
|
config BR2_PACKAGE_IPSEC_TOOLS_STATS
|
||||||
default y
|
default y
|
||||||
bool "Enable statistics logging function."
|
bool "Enable statistics logging function."
|
||||||
|
@ -38,6 +38,12 @@ else
|
|||||||
IPSEC_TOOLS_CONF_OPT+= --disable-frag
|
IPSEC_TOOLS_CONF_OPT+= --disable-frag
|
||||||
endif
|
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)
|
ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_STATS), y)
|
||||||
IPSEC_TOOLS_CONF_OPT+= --enable-stats
|
IPSEC_TOOLS_CONF_OPT+= --enable-stats
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user