1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 // The Google-specific helper for QuicConnection which uses
6 // EpollAlarm for alarms, and used an int fd_ for writing data.
8 #ifndef NET_TOOLS_QUIC_QUIC_EPOLL_CONNECTION_HELPER_H_
9 #define NET_TOOLS_QUIC_QUIC_EPOLL_CONNECTION_HELPER_H_
11 #include <sys/types.h>
14 #include "net/quic/quic_connection.h"
15 #include "net/quic/quic_packet_writer.h"
16 #include "net/quic/quic_protocol.h"
17 #include "net/quic/quic_time.h"
18 #include "net/tools/quic/quic_default_packet_writer.h"
19 #include "net/tools/quic/quic_epoll_clock.h"
29 class RetransmissionAlarm
;
33 class QuicEpollConnectionHelper
: public QuicConnectionHelperInterface
{
35 explicit QuicEpollConnectionHelper(EpollServer
* eps
);
36 virtual ~QuicEpollConnectionHelper();
38 // QuicEpollConnectionHelperInterface
39 virtual const QuicClock
* GetClock() const override
;
40 virtual QuicRandom
* GetRandomGenerator() override
;
41 virtual QuicAlarm
* CreateAlarm(QuicAlarm::Delegate
* delegate
) override
;
43 EpollServer
* epoll_server() { return epoll_server_
; }
46 friend class QuicConnectionPeer
;
48 EpollServer
* epoll_server_
; // Not owned.
50 const QuicEpollClock clock_
;
51 QuicRandom
* random_generator_
;
53 DISALLOW_COPY_AND_ASSIGN(QuicEpollConnectionHelper
);
59 #endif // NET_TOOLS_QUIC_QUIC_EPOLL_CONNECTION_HELPER_H_