HomeSort by relevance Sort by last modified time
    Searched refs:SetSSLSession (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/net/socket/
ssl_session_cache_openssl.h 30 // - When creating a new SSL connection, call SetSSLSession() with the newly
40 // to SetSSLSession(), where N is the current configuration's
59 // |expiration_check_count| is the number of calls to SetSSLSession() that
77 // |expiration_check_count| is the number of calls to SetSSLSession() that
97 // Every |check_expiration_count| call to either SetSSLSession() or
102 bool SetSSLSession(SSL* ssl);
104 // A more efficient variant of SetSSLSession() that can be used if the caller
109 // Every |check_expiration_count| call to either SetSSLSession() or
ssl_session_cache_openssl_unittest.cc 204 TEST_F(SSLSessionCacheOpenSSLTest, SetSSLSession) {
209 EXPECT_FALSE(cache_.SetSSLSession(ssl.get()));
225 EXPECT_TRUE(cache_.SetSSLSession(ssl2.get()));
271 EXPECT_FALSE(cache_.SetSSLSession(ssl.get()));
282 EXPECT_FALSE(cache_.SetSSLSession(ssl2.get()));
301 EXPECT_FALSE(cache_.SetSSLSession(ssl3.get()));
364 // Call SetSSLSession() |kMaxCheckCount - 1| times, this shall not expire
368 cache_.SetSSLSession(ssl.get());
372 // Call SetSSLSession another time, this shall expire all sessions except
375 cache_.SetSSLSession(bad_ssl.get())
    [all...]
ssl_session_cache_openssl.cc 197 bool SetSSLSession(SSL* ssl) {
205 // Variant of SetSSLSession to be used when the client already has computed
508 bool SSLSessionCacheOpenSSL::SetSSLSession(SSL* ssl) {
509 return impl_->SetSSLSession(ssl);

Completed in 117 milliseconds