Changeset 3475e62 in mod_gnutls
- Timestamp:
- Oct 31, 2016, 6:30:14 PM (6 years ago)
- Branches:
- asyncio, debian/master, debian/stretch-backports, main, master, proxy-ticket, upstream
- Children:
- b34a67e
- Parents:
- c39ae1a
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
include/mod_gnutls.h.in
rc39ae1a r3475e62 211 211 apr_time_t last_cache_check; 212 212 213 /* E XPERIMENTAL: Enable OCSP stapling */213 /* Enable OCSP stapling */ 214 214 unsigned char ocsp_staple; 215 /* EXPERIMENTAL: Read OCSP response for stapling from this file216 * instead ofsending a request over HTTP */215 /* Read OCSP response for stapling from this file instead of 216 * sending a request over HTTP */ 217 217 char *ocsp_response_file; 218 218 /* Internal OCSP data for this server */ -
src/mod_gnutls.c
rc39ae1a r3475e62 274 274 AP_INIT_FLAG("GnuTLSOCSPStapling", mgs_ocsp_stapling_enable, 275 275 NULL, RSRC_CONF, 276 "E XPERIMENTAL: Enable OCSP stapling"),276 "Enable OCSP stapling"), 277 277 AP_INIT_TAKE1("GnuTLSOCSPResponseFile", mgs_store_ocsp_response_path, 278 278 NULL, RSRC_CONF, 279 " EXPERIMENTAL: Read OCSP response for stapling from this"280 " file instead of sending a request over HTTP (must be"281 " updatedexternally)"),279 "Read OCSP response for stapling from this file instead " 280 "of sending a request over HTTP (must be updated " 281 "externally)"), 282 282 AP_INIT_TAKE1("GnuTLSOCSPGraceTime", mgs_set_timeout, 283 283 NULL, RSRC_CONF, 284 " EXPERIMENTAL: Replace cached OCSP responses this many"285 " seconds beforethey expire"),284 "Replace cached OCSP responses this many seconds before " 285 "they expire"), 286 286 AP_INIT_TAKE1("GnuTLSOCSPFailureTimeout", mgs_set_timeout, 287 287 NULL, RSRC_CONF, 288 " EXPERIMENTAL: Wait this many seconds before retrying a"289 " failed OCSPrequest"),288 "Wait this many seconds before retrying a failed OCSP " 289 "request"), 290 290 AP_INIT_TAKE1("GnuTLSOCSPSocketTimeout", mgs_set_timeout, 291 291 NULL, RSRC_CONF, 292 " EXPERIMENTAL:Socket timeout for OCSP requests"),292 "Socket timeout for OCSP requests"), 293 293 #ifdef __clang__ 294 294 /* Workaround for this clang bug:
Note: See TracChangeset
for help on using the changeset viewer.