// 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_QPACK_QPACK_BLOCKING_MANAGER_H_ #define QUICHE_QUIC_CORE_QPACK_QPACK_BLOCKING_MANAGER_H_ #include <cstdint> #include <map> #include <set> #include "absl/container/flat_hash_map.h" #include "quiche/quic/core/quic_types.h" #include "quiche/quic/platform/api/quic_export.h" namespace quic { namespace test { class QpackBlockingManagerPeer; } // namespace test // Class to keep track of blocked streams and blocking dynamic table entries: // https://rfc-editor.org/rfc/rfc9204.html#section-2.2.1. // https://rfc-editor.org/rfc/rfc9204.html#section-2.1.2 class QUICHE_EXPORT QpackBlockingManager { … }; } // namespace quic #endif // QUICHE_QUIC_CORE_QPACK_QPACK_BLOCKING_MANAGER_H_