// Copyright (c) 2019 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef QUICHE_QUIC_CORE_CRYPTO_TLS_CLIENT_CONNECTION_H_ #define QUICHE_QUIC_CORE_CRYPTO_TLS_CLIENT_CONNECTION_H_ #include "quiche/quic/core/crypto/tls_connection.h" namespace quic { // TlsClientConnection receives calls for client-specific BoringSSL callbacks // and calls its Delegate for the implementation of those callbacks. class QUICHE_EXPORT TlsClientConnection : public TlsConnection { … }; } // namespace quic #endif // QUICHE_QUIC_CORE_CRYPTO_TLS_CLIENT_CONNECTION_H_