Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(138)

Side by Side Diff: net/tools/quic/quic_server.h

Issue 1761263002: Landing recent QUIC changes until 7:19 PM, Feb 26, 2016 UTC-5. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add ActivateStream() call to QuicChromiumClientSession to fix server push failure Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « net/tools/quic/quic_dispatcher_test.cc ('k') | net/tools/quic/quic_server.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 // 4 //
5 // A toy server, which listens on a specified address for QUIC traffic and 5 // A toy server, which listens on a specified address for QUIC traffic and
6 // handles incoming responses. 6 // handles incoming responses.
7 // 7 //
8 // Note that this server is intended to verify correctness of the client and is 8 // Note that this server is intended to verify correctness of the client and is
9 // in no way expected to be performant. 9 // in no way expected to be performant.
10 10
(...skipping 25 matching lines...) Expand all
36 public: 36 public:
37 explicit QuicServer(ProofSource* proof_source); 37 explicit QuicServer(ProofSource* proof_source);
38 QuicServer(ProofSource* proof_source, 38 QuicServer(ProofSource* proof_source,
39 const QuicConfig& config, 39 const QuicConfig& config,
40 const QuicCryptoServerConfig::ConfigOptions& server_config_options, 40 const QuicCryptoServerConfig::ConfigOptions& server_config_options,
41 const QuicVersionVector& supported_versions); 41 const QuicVersionVector& supported_versions);
42 42
43 ~QuicServer() override; 43 ~QuicServer() override;
44 44
45 // Start listening on the specified address. 45 // Start listening on the specified address.
46 bool Listen(const IPEndPoint& address); 46 bool CreateUDPSocketAndListen(const IPEndPoint& address);
47 47
48 // Wait up to 50ms, and handle any events which occur. 48 // Wait up to 50ms, and handle any events which occur.
49 void WaitForEvents(); 49 void WaitForEvents();
50 50
51 // Server deletion is imminent. Start cleaning up the epoll server. 51 // Server deletion is imminent. Start cleaning up the epoll server.
52 void Shutdown(); 52 void Shutdown();
53 53
54 // From EpollCallbackInterface 54 // From EpollCallbackInterface
55 void OnRegistration(EpollServer* eps, int fd, int event_mask) override {} 55 void OnRegistration(EpollServer* eps, int fd, int event_mask) override {}
56 void OnModification(int fd, int event_mask) override {} 56 void OnModification(int fd, int event_mask) override {}
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 QuicCryptoServerConfig crypto_config_; 123 QuicCryptoServerConfig crypto_config_;
124 // crypto_config_options_ contains crypto parameters for the handshake. 124 // crypto_config_options_ contains crypto parameters for the handshake.
125 QuicCryptoServerConfig::ConfigOptions crypto_config_options_; 125 QuicCryptoServerConfig::ConfigOptions crypto_config_options_;
126 126
127 // This vector contains QUIC versions which we currently support. 127 // This vector contains QUIC versions which we currently support.
128 // This should be ordered such that the highest supported version is the first 128 // This should be ordered such that the highest supported version is the first
129 // element, with subsequent elements in descending order (versions can be 129 // element, with subsequent elements in descending order (versions can be
130 // skipped as necessary). 130 // skipped as necessary).
131 QuicVersionVector supported_versions_; 131 QuicVersionVector supported_versions_;
132 132
133 // Point to a QuicPacketReader object on the heap. The reader allocates more
134 // space than allowed on the stack.
133 scoped_ptr<QuicPacketReader> packet_reader_; 135 scoped_ptr<QuicPacketReader> packet_reader_;
134 136
135 DISALLOW_COPY_AND_ASSIGN(QuicServer); 137 DISALLOW_COPY_AND_ASSIGN(QuicServer);
136 }; 138 };
137 139
138 } // namespace net 140 } // namespace net
139 141
140 #endif // NET_TOOLS_QUIC_QUIC_SERVER_H_ 142 #endif // NET_TOOLS_QUIC_QUIC_SERVER_H_
OLDNEW
« no previous file with comments | « net/tools/quic/quic_dispatcher_test.cc ('k') | net/tools/quic/quic_server.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698