blob: 9719bdb9b7a4b83a5cd01b25427ecd228cfeb5be [file] [log] [blame]
bnca0c8f5a2019-08-04 11:49:03 -07001// Copyright (c) 2019 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "net/third_party/quiche/src/quic/test_tools/qpack_encoder_peer.h"
6
7#include "net/third_party/quiche/src/quic/core/qpack/qpack_encoder.h"
8
9namespace quic {
10namespace test {
11
12// static
13QpackHeaderTable* QpackEncoderPeer::header_table(QpackEncoder* encoder) {
14 return &encoder->header_table_;
15}
16
17// static
18uint64_t QpackEncoderPeer::maximum_blocked_streams(
19 const QpackEncoder* encoder) {
20 return encoder->maximum_blocked_streams_;
21}
22
bnc178697b2019-08-15 05:07:53 -070023// static
24uint64_t QpackEncoderPeer::smallest_blocking_index(
25 const QpackEncoder* encoder) {
26 return encoder->blocking_manager_.smallest_blocking_index();
27}
28
bnca0c8f5a2019-08-04 11:49:03 -070029} // namespace test
30} // namespace quic