blob: 6a909cd189a72fea025da3482a65842662e63c2c [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.
// A toy server, which listens on a specified address for QUIC traffic and
// handles incoming responses.
//
// Note that this server is intended to verify correctness of the client and is
// in no way expected to be performant.
#ifndef NET_THIRD_PARTY_QUIC_PLATFORM_IMPL_QUIC_EPOLL_IMPL_H_
#define NET_THIRD_PARTY_QUIC_PLATFORM_IMPL_QUIC_EPOLL_IMPL_H_
#include "net/tools/epoll_server/epoll_server.h"
namespace quic {
using QuicEpollServerImpl = ::net::EpollServer;
using QuicEpollEventImpl = ::net::EpollEvent;
using QuicEpollAlarmBaseImpl = ::net::EpollAlarm;
using QuicEpollCallbackInterfaceImpl = ::net::EpollCallbackInterface;
} // namespace quic
#endif // NET_THIRD_PARTY_QUIC_PLATFORM_IMPL_QUIC_EPOLL_IMPL_H_