// 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_HANDSHAKER_DELEGATE_INTERFACE_H_ #define QUICHE_QUIC_CORE_HANDSHAKER_DELEGATE_INTERFACE_H_ #include "quiche/quic/core/crypto/transport_parameters.h" #include "quiche/quic/core/quic_types.h" #include "quiche/quic/core/quic_versions.h" namespace quic { class QuicDecrypter; class QuicEncrypter; // Pure virtual class to get notified when particular handshake events occurred. class QUICHE_EXPORT HandshakerDelegateInterface { … }; } // namespace quic #endif // QUICHE_QUIC_CORE_HANDSHAKER_DELEGATE_INTERFACE_H_