Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
2.1.15
-
None
Description
The OpenSSL session cache is enabled by default but the session ID context is not set. This causes errors to be logged if the client requests session caching.
A solution to this is to disable the session caching by adding the following call to listener.c.
SSL_CTX_set_session_cache_mode(ssl_listener->ctx, SSL_SESS_CACHE_OFF);
|