diff options
author | 2010-11-16 15:05:00 +0100 | |
---|---|---|
committer | 2010-11-16 15:05:30 +0100 | |
commit | b59327cde81cddced2a35742bd203c242669d6dc (patch) | |
tree | fb1c4df3e8baa6853cb550911eb175f97d662e08 | |
parent | e02dd8c03ce5b66c81a47830eebe73a21ce71002 (diff) |
GnuTLSCache can now take a single argument (none).
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | src/gnutls_config.c | 5 | ||||
-rw-r--r-- | src/gnutls_hooks.c | 3 | ||||
-rw-r--r-- | src/mod_gnutls.c | 2 |
4 files changed, 9 insertions, 4 deletions
@@ -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 tries | 2008-10-16 | ||
* | Allow openpgp-only sites | 2008-10-01 | ||
* | better logging | 2008-10-01 | ||
* | updated README file to account for openpgp keys --patch by Jack Bates | 2008-10-01 | ||
* | use memmove instead of memcpy because buffers might overlap. | 2008-09-14 | ||
* | added check for invalid context | 2008-09-14 | ||
* | depend on main libgnutls library (and gnutls 2.4.x) | 2008-06-29 | ||
* | send database store failure as DEBUG | 2008-03-05 | ||
* | corrected SRP enable flag, and corrected the DBM hook support. It now free da... | 2008-03-03 | ||
* | added option to disable srp (for distributions that disable it in gnutls) | 2008-02-20 | ||
* | prepare for an alpha release | 2008-01-24 | ||
* | (no commit message) | 2007-12-16 | ||
* | more changes for openpgp support. Seems to be at a workable state. | 2007-12-16 | ||
* | print error if preconfiguration fails | 2007-12-15 | ||
* | Initial support for openpgp keys | 2007-12-15 | ||
* | (no commit message) | 2007-12-10 | ||
* | (no commit message) | 2007-12-10 | ||
* | (no commit message) | 2007-12-09 | ||
* | Do not allow resuming sessions on different servers. | 2007-12-09 | ||
* | Corrected bug which did not allow the TLS session cache to be used. | 2007-12-09 | ||
* | Added support for sending more than one certificate. | 2007-12-08 | ||
* | added more error checks. | 2007-12-03 | ||
* | better handling of RSAFile and DHFile | 2007-12-03 | ||
* | report the missing GnuTLSPriorities for the gnutls enabled hosts only. | 2007-12-02 | ||
* | No more defaults for dhparams, rsaparams. Check for GnuTLSPriorities. | 2007-12-02 | ||
* | The compatibility mode can now be enabled only using the GnuTLSPriorities str... | 2007-12-02 |