Changeset 480aba1 in mod_gnutls
- Timestamp:
- Jan 29, 2013, 8:05:42 PM (10 years ago)
- Branches:
- asyncio, debian/master, debian/stretch-backports, jessie-backports, main, master, msva, proxy-ticket, upstream
- Children:
- 929d313
- Parents:
- 0367e02
- git-author:
- Daniel Kahn Gillmor <dkg@…> (01/26/13 23:49:23)
- git-committer:
- Daniel Kahn Gillmor <dkg@…> (01/29/13 20:05:42)
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
docs/mod_gnutls_manual-0.1.html
r0367e02 r480aba1 93 93 GnuTLSCache none<br /> 94 94 <h5>Context:</h5> 95 globalconfig<br />95 server config<br /> 96 96 </div> 97 97 <p>This directive configures the SSL Session Cache for mod_gnutls.<br /> … … 126 126 GnuTLSCacheTimeout 300<br /> 127 127 <h5>Context:</h5> 128 globalconfig<br />128 server config<br /> 129 129 </div> 130 130 <p>Sets the timeout for SSL Session Cache entries expiration.<br /> -
src/gnutls_config.c
r0367e02 r480aba1 337 337 const char *arg) { 338 338 int argint; 339 mgs_srvconf_rec *sc = 340 (mgs_srvconf_rec *) ap_get_module_config(parms->server-> 341 module_config, 342 &gnutls_module); 339 const char *err; 340 mgs_srvconf_rec *sc = 341 (mgs_srvconf_rec *) ap_get_module_config(parms->server-> 342 module_config, 343 &gnutls_module); 344 345 if ((err = ap_check_cmd_context(parms, GLOBAL_ONLY))) { 346 return err; 347 } 343 348 344 349 argint = atoi(arg);
Note: See TracChangeset
for help on using the changeset viewer.