#include "quiche/quic/test_tools/simple_session_cache.h"
#include <memory>
#include <string>
#include <utility>
#include "quiche/quic/core/crypto/quic_crypto_client_config.h"
namespace quic {
namespace test {
void SimpleSessionCache::Insert(const QuicServerId& server_id,
bssl::UniquePtr<SSL_SESSION> session,
const TransportParameters& params,
const ApplicationState* application_state) { … }
std::unique_ptr<QuicResumptionState> SimpleSessionCache::Lookup(
const QuicServerId& server_id, QuicWallTime ,
const SSL_CTX* ) { … }
void SimpleSessionCache::ClearEarlyData(const QuicServerId& ) { … }
void SimpleSessionCache::OnNewTokenReceived(const QuicServerId& server_id,
absl::string_view token) { … }
void SimpleSessionCache::RemoveExpiredEntries(QuicWallTime ) { … }
void SimpleSessionCache::Clear() { … }
}
}