diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2016-07-13 16:35:48 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2016-07-13 16:35:48 +0000 |
commit | 017be063f18b8676903994371040064a67e4b1e0 (patch) | |
tree | 83777339e86d002ae569b1ec2b502dfaad65f0a1 /usr.sbin/httpd/httpd.h | |
parent | d0bbaa08d1670a014759055bfdfdf78d5b608943 (diff) |
Adjust existing tls_config_set_cipher() callers for TLS cipher group
changes - map the previous configuration to the equivalent in the new
groups. This will be revisited post release.
Discussed with beck@
Diffstat (limited to 'usr.sbin/httpd/httpd.h')
-rw-r--r-- | usr.sbin/httpd/httpd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/httpd/httpd.h b/usr.sbin/httpd/httpd.h index b3a9240be6d..aa9df949383 100644 --- a/usr.sbin/httpd/httpd.h +++ b/usr.sbin/httpd/httpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: httpd.h,v 1.103 2016/04/28 14:20:11 jsing Exp $ */ +/* $OpenBSD: httpd.h,v 1.104 2016/07/13 16:35:47 jsing Exp $ */ /* * Copyright (c) 2006 - 2015 Reyk Floeter <reyk@openbsd.org> @@ -52,7 +52,7 @@ #define HTTPD_LOGVIS VIS_NL|VIS_TAB|VIS_CSTYLE #define HTTPD_TLS_CERT "/etc/ssl/server.crt" #define HTTPD_TLS_KEY "/etc/ssl/private/server.key" -#define HTTPD_TLS_CIPHERS "HIGH:!aNULL" +#define HTTPD_TLS_CIPHERS "compat" #define HTTPD_TLS_DHE_PARAMS "none" #define HTTPD_TLS_ECDHE_CURVE "auto" #define FD_RESERVE 5 |