blob: f53ef8bce2b85d3923e306b31b9a58ec1613356f [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_QUIC_PLATFORM_IMPL_QUIC_EPOLL_IMPL_H_
#define NET_QUIC_PLATFORM_IMPL_QUIC_EPOLL_IMPL_H_
#include "net/third_party/quiche/src/epoll_server/simple_epoll_server.h"
namespace quic {
using QuicEpollServerImpl = epoll_server::SimpleEpollServer;
using QuicEpollEventImpl = epoll_server::EpollEvent;
using QuicEpollAlarmBaseImpl = epoll_server::EpollAlarm;
using QuicEpollCallbackInterfaceImpl = epoll_server::EpollCallbackInterface;
} // namespace quic
#endif // NET_QUIC_PLATFORM_IMPL_QUIC_EPOLL_IMPL_H_