bnc | a0c8f5a | 2019-08-04 11:49:03 -0700 | [diff] [blame] | 1 | // 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 | |
| 9 | namespace quic { |
| 10 | namespace test { |
| 11 | |
| 12 | // static |
| 13 | QpackHeaderTable* QpackEncoderPeer::header_table(QpackEncoder* encoder) { |
| 14 | return &encoder->header_table_; |
| 15 | } |
| 16 | |
| 17 | // static |
| 18 | uint64_t QpackEncoderPeer::maximum_blocked_streams( |
| 19 | const QpackEncoder* encoder) { |
| 20 | return encoder->maximum_blocked_streams_; |
| 21 | } |
| 22 | |
bnc | 178697b | 2019-08-15 05:07:53 -0700 | [diff] [blame] | 23 | // static |
| 24 | uint64_t QpackEncoderPeer::smallest_blocking_index( |
| 25 | const QpackEncoder* encoder) { |
| 26 | return encoder->blocking_manager_.smallest_blocking_index(); |
| 27 | } |
| 28 | |
bnc | a0c8f5a | 2019-08-04 11:49:03 -0700 | [diff] [blame] | 29 | } // namespace test |
| 30 | } // namespace quic |