// Copyright 2013 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_SERVER_THREAD_H_ #define QUICHE_QUIC_TEST_TOOLS_SERVER_THREAD_H_ #include <memory> #include "quiche/quic/core/quic_config.h" #include "quiche/quic/platform/api/quic_socket_address.h" #include "quiche/quic/platform/api/quic_thread.h" #include "quiche/quic/tools/quic_server.h" #include "quiche/common/platform/api/quiche_mutex.h" #include "quiche/common/quiche_callbacks.h" namespace quic { namespace test { // Simple wrapper class to run QuicServer in a dedicated thread. class ServerThread : public QuicThread { … }; } // namespace test } // namespace quic #endif // QUICHE_QUIC_TEST_TOOLS_SERVER_THREAD_H_