From 5dadf34209c288b8fffba1016e6a3c9446381153 Mon Sep 17 00:00:00 2001 From: Rob Austein Date: Thu, 7 Jun 2007 02:37:32 +0000 Subject: Replace hacked OpenSSL code with OpenSSL 0.9.8e distribution. svn path=/openssl/Makefile; revision=659 --- openssl/trunk/doc/ssl/SSL_CTX_flush_sessions.pod | 49 ------------------------ 1 file changed, 49 deletions(-) delete mode 100644 openssl/trunk/doc/ssl/SSL_CTX_flush_sessions.pod (limited to 'openssl/trunk/doc/ssl/SSL_CTX_flush_sessions.pod') diff --git a/openssl/trunk/doc/ssl/SSL_CTX_flush_sessions.pod b/openssl/trunk/doc/ssl/SSL_CTX_flush_sessions.pod deleted file mode 100644 index 148c36c8..00000000 --- a/openssl/trunk/doc/ssl/SSL_CTX_flush_sessions.pod +++ /dev/null @@ -1,49 +0,0 @@ -=pod - -=head1 NAME - -SSL_CTX_flush_sessions, SSL_flush_sessions - remove expired sessions - -=head1 SYNOPSIS - - #include - - void SSL_CTX_flush_sessions(SSL_CTX *ctx, long tm); - void SSL_flush_sessions(SSL_CTX *ctx, long tm); - -=head1 DESCRIPTION - -SSL_CTX_flush_sessions() causes a run through the session cache of -B to remove sessions expired at time B. - -SSL_flush_sessions() is a synonym for SSL_CTX_flush_sessions(). - -=head1 NOTES - -If enabled, the internal session cache will collect all sessions established -up to the specified maximum number (see SSL_CTX_sess_set_cache_size()). -As sessions will not be reused ones they are expired, they should be -removed from the cache to save resources. This can either be done - automatically whenever 255 new sessions were established (see -L) -or manually by calling SSL_CTX_flush_sessions(). - -The parameter B specifies the time which should be used for the -expiration test, in most cases the actual time given by time(0) -will be used. - -SSL_CTX_flush_sessions() will only check sessions stored in the internal -cache. When a session is found and removed, the remove_session_cb is however -called to synchronize with the external cache (see -L). - -=head1 RETURN VALUES - -=head1 SEE ALSO - -L, -L, -L, -L - -=cut -- cgit v1.2.3