diff options
author | 2001-08-07 14:07:47 +0000 | |
---|---|---|
committer | 2001-08-07 14:07:47 +0000 | |
commit | 34eb10eb471a9b8461bcd40aede9b5b4b3b65e9e (patch) | |
tree | 88b42e03730ff7c8601d5de7356e9bc83073cbe2 /sys/netinet/ipsec_input.c | |
parent | remove this header which has been unused for over 3 yrs now. (diff) | |
download | wireguard-openbsd-34eb10eb471a9b8461bcd40aede9b5b4b3b65e9e.tar.xz wireguard-openbsd-34eb10eb471a9b8461bcd40aede9b5b4b3b65e9e.zip |
enable ah & esp by default, now that we trust the code more
Diffstat (limited to 'sys/netinet/ipsec_input.c')
-rw-r--r-- | sys/netinet/ipsec_input.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/ipsec_input.c b/sys/netinet/ipsec_input.c index 17b8e0cec25..7216c4081eb 100644 --- a/sys/netinet/ipsec_input.c +++ b/sys/netinet/ipsec_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ipsec_input.c,v 1.50 2001/07/06 19:35:38 jjbg Exp $ */ +/* $OpenBSD: ipsec_input.c,v 1.51 2001/08/07 14:07:47 deraadt Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), * Angelos D. Keromytis (kermit@csd.uch.gr) and @@ -84,8 +84,8 @@ void *ipsec_common_ctlinput(int, struct sockaddr *, void *, int); #endif /* sysctl variables */ -int esp_enable = 0; -int ah_enable = 0; +int esp_enable = 1; +int ah_enable = 1; int ipcomp_enable = 0; #ifdef INET6 |