blob: 4e4bb524d8171b3a0bf3ad8344e4e979ba2d2682 [file] [log] [blame]
// 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.
#include "net/third_party/quiche/src/quic/test_tools/qpack_encoder_peer.h"
#include "net/third_party/quiche/src/quic/core/qpack/qpack_encoder.h"
namespace quic {
namespace test {
// static
QpackHeaderTable* QpackEncoderPeer::header_table(QpackEncoder* encoder) {
return &encoder->header_table_;
}
// static
uint64_t QpackEncoderPeer::maximum_blocked_streams(
const QpackEncoder* encoder) {
return encoder->maximum_blocked_streams_;
}
} // namespace test
} // namespace quic