chromium/third_party/webrtc/rtc_base/openssl_session_cache.cc

/*
 *  Copyright 2018 The WebRTC Project Authors. All rights reserved.
 *
 *  Use of this source code is governed by a BSD-style license
 *  that can be found in the LICENSE file in the root of the source
 *  tree. An additional intellectual property rights grant can be found
 *  in the file PATENTS.  All contributing project authors may
 *  be found in the AUTHORS file in the root of the source tree.
 */

#include "rtc_base/openssl_session_cache.h"

#include "absl/strings/string_view.h"
#include "rtc_base/checks.h"
#include "rtc_base/openssl.h"

namespace rtc {

OpenSSLSessionCache::OpenSSLSessionCache(SSLMode ssl_mode, SSL_CTX* ssl_ctx)
    :{}

OpenSSLSessionCache::~OpenSSLSessionCache() {}

SSL_SESSION* OpenSSLSessionCache::LookupSession(
    absl::string_view hostname) const {}

void OpenSSLSessionCache::AddSession(absl::string_view hostname,
                                     SSL_SESSION* new_session) {}

SSL_CTX* OpenSSLSessionCache::GetSSLContext() const {}

SSLMode OpenSSLSessionCache::GetSSLMode() const {}

}  // namespace rtc