diff options
author | 2004-08-23 11:16:49 +0000 | |
---|---|---|
committer | 2004-08-23 11:16:49 +0000 | |
commit | 58e7513890a7e23337a345f606ab201da868bc0b (patch) | |
tree | 811d37c3618fac72c74b0cb5783382b2a6e73042 | |
parent | Indent nit. (diff) | |
download | wireguard-openbsd-58e7513890a7e23337a345f606ab201da868bc0b.tar.xz wireguard-openbsd-58e7513890a7e23337a345f606ab201da868bc0b.zip |
Default enable DPD (Dead Peer Detection) support. hshoexer@ ok
-rw-r--r-- | sbin/isakmpd/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/isakmpd/Makefile b/sbin/isakmpd/Makefile index 39d3dd96437..2c04d8b7c29 100644 --- a/sbin/isakmpd/Makefile +++ b/sbin/isakmpd/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.56 2004/07/30 10:45:27 ho Exp $ +# $OpenBSD: Makefile,v 1.57 2004/08/23 11:16:49 ho Exp $ # $EOM: Makefile,v 1.78 2000/10/15 21:33:42 niklas Exp $ # @@ -47,10 +47,10 @@ OS= openbsd # Compile-time configuration of otherwise optional features #FEATURES= tripledes des blowfish cast aes #FEATURES+= policy x509 ec aggressive debug gmp -#FEATURES+= rawkey isakmp_cfg dnssec privsep dpd nat_traversal +#FEATURES+= rawkey isakmp_cfg dnssec privsep nat_traversal dpd FEATURES= tripledes des blowfish cast aes FEATURES+= policy x509 ec aggressive debug -FEATURES+= rawkey isakmp_cfg privsep nat_traversal +FEATURES+= rawkey isakmp_cfg privsep nat_traversal dpd .PATH: ${.CURDIR}/sysdep/${OS} |