// Copyright (c) 2012 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_TEST_TOOLS_SIMULATOR_QUEUE_H_ #define QUICHE_QUIC_TEST_TOOLS_SIMULATOR_QUEUE_H_ #include "quiche/quic/core/quic_alarm.h" #include "quiche/quic/test_tools/simulator/link.h" #include "quiche/common/quiche_circular_deque.h" namespace quic { namespace simulator { // A finitely sized queue which egresses packets onto a constrained link. The // capacity of the queue is measured in bytes as opposed to packets. class Queue : public Actor, public UnconstrainedPortInterface { … }; } // namespace simulator } // namespace quic #endif // QUICHE_QUIC_TEST_TOOLS_SIMULATOR_QUEUE_H_