// Copyright 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_UBER_RECEIVED_PACKET_MANAGER_H_ #define QUICHE_QUIC_CORE_UBER_RECEIVED_PACKET_MANAGER_H_ #include "quiche/quic/core/frames/quic_ack_frequency_frame.h" #include "quiche/quic/core/quic_received_packet_manager.h" namespace quic { // This class comprises multiple received packet managers, one per packet number // space. Please note, if multiple packet number spaces is not supported, only // one received packet manager will be used. class QUICHE_EXPORT UberReceivedPacketManager { … }; } // namespace quic #endif // QUICHE_QUIC_CORE_UBER_RECEIVED_PACKET_MANAGER_H_