Index: runtime/bin/secure_socket.cc |
diff --git a/runtime/bin/secure_socket.cc b/runtime/bin/secure_socket.cc |
index f297aed7d257cdadc113fb94d007b67ead328fc5..2c9665b9982e0b95586550ea27ceffd042c7cb8d 100644 |
--- a/runtime/bin/secure_socket.cc |
+++ b/runtime/bin/secure_socket.cc |
@@ -262,6 +262,11 @@ void SSLFilter::InitializeLibrary(const char* certificate_database, |
if (status != SECSuccess) { |
ThrowPRException("Unsuccessful SSL_OptionSetDefault enable TLS call."); |
} |
+ status = SSL_ConfigServerSessionIDCache(0, 0, 0, NULL); |
+ if (status != SECSuccess) { |
+ ThrowPRException("Unsuccessful SSL_ConfigServerSessionIDCache call."); |
+ } |
+ |
} else { |
ThrowException("Called SSLFilter::InitializeLibrary more than once"); |
} |