diff options
author | Stefan Eissing <icing@apache.org> | 2015-10-15 15:14:37 +0200 |
---|---|---|
committer | Stefan Eissing <icing@apache.org> | 2015-10-15 15:14:37 +0200 |
commit | 8e878dc842d24d2c3edb91ff756b332710d88aac (patch) | |
tree | 76b919bf446532f7dfb30b3ace0d9a321c22fa5d /modules/http2/h2_config.h | |
parent | mod_http2: new directive H2Compliance on/off, checking TLS protocol and ciphe... (diff) | |
download | apache2-8e878dc842d24d2c3edb91ff756b332710d88aac.tar.xz apache2-8e878dc842d24d2c3edb91ff756b332710d88aac.zip |
changed H2Compliance to H2ModernTLSOnly, added description in module docs
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1708815 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/http2/h2_config.h')
-rw-r--r-- | modules/http2/h2_config.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/http2/h2_config.h b/modules/http2/h2_config.h index 60e1d089c1..83d899f5ab 100644 --- a/modules/http2/h2_config.h +++ b/modules/http2/h2_config.h @@ -34,7 +34,7 @@ typedef enum { H2_CONF_SER_HEADERS, H2_CONF_DIRECT, H2_CONF_SESSION_FILES, - H2_CONF_COMPLIANCE, + H2_CONF_MODERN_TLS_ONLY, } h2_config_var_t; /* Apache httpd module configuration for h2. */ @@ -52,7 +52,7 @@ typedef struct h2_config { processing, better compatibility */ int h2_direct; /* if mod_h2 is active directly */ int session_extra_files; /* # of extra files a session may keep open */ - int rfc_compliance; /* Comply with all aspects of RFC 7540 */ + int modern_tls_only; /* Accept only modern TLS in HTTP/2 connections */ } h2_config; |