fixed SF# 2864380

This commit is contained in:
Guenter Obiltschnig
2009-11-16 16:53:23 +00:00
parent 39c307297e
commit ed48c24fa7
6 changed files with 58 additions and 11 deletions

View File

@@ -1,7 +1,7 @@
//
// Context.h
//
// $Id: //poco/1.3/NetSSL_OpenSSL/include/Poco/Net/Context.h#6 $
// $Id: //poco/1.3/NetSSL_OpenSSL/include/Poco/Net/Context.h#7 $
//
// Library: NetSSL_OpenSSL
// Package: SSLCore
@@ -140,6 +140,14 @@ public:
Context::VerificationMode verificationMode() const;
/// Returns the verification mode.
void enableSessionCache(bool flag = true);
/// Enable or disable the SSL/TLS session cache for a server.
///
/// The default is a disabled session cache.
bool sessionCacheEnabled() const;
/// Returns true iff the session cache is enabled.
private:
Usage _usage;