Changeset a939015 in mod_gnutls
- Timestamp:
- Nov 6, 2018, 2:58:56 PM (4 years ago)
- Branches:
- asyncio, debian/master, master, proxy-ticket
- Children:
- 0bed0a0
- Parents:
- 64470ce
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
configure.ac
r64470ce ra939015 76 76 [early_sni="no"]) 77 77 if test "$early_sni" != "no"; then 78 GNUTLS_FEAT_CFLAGS="${GNUTLS_FEAT_CFLAGS} -DENABLE_EARLY_SNI" 79 fi 78 ENABLE_EARLY_SNI=1 79 # This is for the test server configuration 80 EXPECT_EARLY_SNI="Define EXPECT_EARLY_SNI" 81 else 82 ENABLE_EARLY_SNI=0 83 EXPECT_EARLY_SNI="" 84 fi 85 AC_SUBST(ENABLE_EARLY_SNI) 86 AC_SUBST(EXPECT_EARLY_SNI) 87 AM_SUBST_NOTMAKE(EXPECT_EARLY_SNI) 80 88 81 89 AC_ARG_ENABLE(strict, … … 308 316 doc/Makefile doc/doxygen.conf include/mod_gnutls.h \ 309 317 test/proxy_backend.conf test/ocsp_server.conf \ 318 test/apache-conf/early_sni.conf \ 310 319 test/apache-conf/listen.conf \ 311 320 test/apache-conf/netns.conf]) -
include/mod_gnutls.h.in
r64470ce ra939015 50 50 /* Module Debug Mode */ 51 51 #define MOD_GNUTLS_DEBUG @OOO_MAINTAIN@ 52 53 /* Compile support for early SNI? */ 54 #if @ENABLE_EARLY_SNI@ == 1 55 #define ENABLE_EARLY_SNI 56 #endif 52 57 53 58 /** Name of the module-wide singleton watchdog */ -
test/apache-conf/.gitignore
r64470ce ra939015 1 1 netns.conf 2 2 listen.conf 3 early_sni.conf -
test/tests/28_HTTP2_support/apache.conf
r64470ce ra939015 9 9 </Location> 10 10 11 <IfDefine EXPECT_EARLY_SNI> 12 # Different ALPN settings on the same port work only with early SNI 13 <VirtualHost _default_:${TEST_PORT}> 14 # No "Protocols" directive, HTTP/1.1 only 15 ServerName vhost.example.com 16 GnuTLSEnable On 17 GnuTLSCertificateFile server/x509.pem 18 GnuTLSKeyFile server/secret.key 19 GnuTLSPriorities NORMAL 20 </VirtualHost> 21 </IfDefine> 22 11 23 <VirtualHost _default_:${TEST_PORT}> 12 24 Protocols h2 http/1.1
Note: See TracChangeset
for help on using the changeset viewer.