aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Nikos Mavrogiannopoulos 2010-11-16 15:05:00 +0100
committerGravatar Nikos Mavrogiannopoulos 2010-11-16 15:05:30 +0100
commitb59327cde81cddced2a35742bd203c242669d6dc (patch)
treefb1c4df3e8baa6853cb550911eb175f97d662e08
parente02dd8c03ce5b66c81a47830eebe73a21ce71002 (diff)
GnuTLSCache can now take a single argument (none).
-rw-r--r--NEWS3
-rw-r--r--src/gnutls_config.c5
-rw-r--r--src/gnutls_hooks.c3
-rw-r--r--src/mod_gnutls.c2
4 files changed, 9 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index cb0f64f..4fd667d 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,6 @@
1** Version 0.6.0
2- GnuTLSCache none is now an allowed option.
3
1** Version 0.5.9 (2010-09-24) 4** Version 0.5.9 (2010-09-24)
2- Corrected behavior in Keep-Alive connections (do not 5- Corrected behavior in Keep-Alive connections (do not
3 terminate the connection prematurely) 6 terminate the connection prematurely)
diff --git a/src/gnutls_config.c b/src/gnutls_config.c
index fc3e166..517dbfb 100644
--- a/src/gnutls_config.c
+++ b/src/gnutls_config.c
@@ -370,6 +370,8 @@ const char *mgs_set_cache(cmd_parms * parms, void *dummy,
370 370
371 if (strcasecmp("none", type) == 0) { 371 if (strcasecmp("none", type) == 0) {
372 sc->cache_type = mgs_cache_none; 372 sc->cache_type = mgs_cache_none;
373 sc->cache_config = NULL;
374 return NULL;
373 } else if (strcasecmp("dbm", type) == 0) { 375 } else if (strcasecmp("dbm", type) == 0) {
374 sc->cache_type = mgs_cache_dbm; 376 sc->cache_type = mgs_cache_dbm;
375 } else if (strcasecmp("gdbm", type) == 0) { 377 } else if (strcasecmp("gdbm", type) == 0) {
Nokis Mavrogiannopoulos 2008-11-02
* increased max handshake triesGravatar Nokis Mavrogiannopoulos 2008-10-16
* Allow openpgp-only sitesGravatar Nokis Mavrogiannopoulos 2008-10-01
* better loggingGravatar Nokis Mavrogiannopoulos 2008-10-01
* updated README file to account for openpgp keys --patch by Jack BatesGravatar Nokis Mavrogiannopoulos 2008-10-01
* use memmove instead of memcpy because buffers might overlap. Gravatar Nokis Mavrogiannopoulos 2008-09-14
* added check for invalid contextGravatar Nokis Mavrogiannopoulos 2008-09-14
* depend on main libgnutls library (and gnutls 2.4.x)Gravatar Nokis Mavrogiannopoulos 2008-06-29
* send database store failure as DEBUGGravatar Nokis Mavrogiannopoulos 2008-03-05
* corrected SRP enable flag, and corrected the DBM hook support. It now free da...Gravatar Nokis Mavrogiannopoulos 2008-03-03
* added option to disable srp (for distributions that disable it in gnutls)Gravatar Nokis Mavrogiannopoulos 2008-02-20
* prepare for an alpha releaseGravatar Nokis Mavrogiannopoulos 2008-01-24
* (no commit message)Gravatar Nokis Mavrogiannopoulos 2007-12-16
* more changes for openpgp support. Seems to be at a workable state.Gravatar Nokis Mavrogiannopoulos 2007-12-16
* print error if preconfiguration failsGravatar Nokis Mavrogiannopoulos 2007-12-15
* Initial support for openpgp keysGravatar Nokis Mavrogiannopoulos 2007-12-15
* (no commit message)Gravatar Nokis Mavrogiannopoulos 2007-12-10
* (no commit message)Gravatar Nokis Mavrogiannopoulos 2007-12-10
* (no commit message)Gravatar Nokis Mavrogiannopoulos 2007-12-09
* Do not allow resuming sessions on different servers.Gravatar Nokis Mavrogiannopoulos 2007-12-09
* Corrected bug which did not allow the TLS session cache to be used.Gravatar Nokis Mavrogiannopoulos 2007-12-09
* Added support for sending more than one certificate.Gravatar Nokis Mavrogiannopoulos 2007-12-08
* added more error checks.Gravatar Nokis Mavrogiannopoulos 2007-12-03
* better handling of RSAFile and DHFileGravatar Nokis Mavrogiannopoulos 2007-12-03
* report the missing GnuTLSPriorities for the gnutls enabled hosts only.Gravatar Nokis Mavrogiannopoulos 2007-12-02
* No more defaults for dhparams, rsaparams. Check for GnuTLSPriorities.Gravatar Nokis Mavrogiannopoulos 2007-12-02
* The compatibility mode can now be enabled only using the GnuTLSPriorities str...Gravatar Nokis Mavrogiannopoulos 2007-12-02