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

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

Issue 1893083002: Change scoped_ptr to std::unique_ptr in //net. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: scopedptr-net-all: iwyu Created 4 years, 8 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_packet_writer_wrapper.h ('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
11 #ifndef NET_TOOLS_QUIC_QUIC_SERVER_H_ 11 #ifndef NET_TOOLS_QUIC_QUIC_SERVER_H_
12 #define NET_TOOLS_QUIC_QUIC_SERVER_H_ 12 #define NET_TOOLS_QUIC_QUIC_SERVER_H_
13 13
14 #include <stddef.h> 14 #include <stddef.h>
15 15
16 #include <memory>
17
16 #include "base/macros.h" 18 #include "base/macros.h"
17 #include "base/memory/scoped_ptr.h"
18 #include "net/base/ip_endpoint.h" 19 #include "net/base/ip_endpoint.h"
19 #include "net/quic/crypto/quic_crypto_server_config.h" 20 #include "net/quic/crypto/quic_crypto_server_config.h"
20 #include "net/quic/quic_chromium_connection_helper.h" 21 #include "net/quic/quic_chromium_connection_helper.h"
21 #include "net/quic/quic_config.h" 22 #include "net/quic/quic_config.h"
22 #include "net/quic/quic_framer.h" 23 #include "net/quic/quic_framer.h"
23 #include "net/tools/epoll_server/epoll_server.h" 24 #include "net/tools/epoll_server/epoll_server.h"
24 #include "net/tools/quic/quic_default_packet_writer.h" 25 #include "net/tools/quic/quic_default_packet_writer.h"
25 26
26 namespace net { 27 namespace net {
27 28
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 88
88 QuicDispatcher* dispatcher() { return dispatcher_.get(); } 89 QuicDispatcher* dispatcher() { return dispatcher_.get(); }
89 90
90 private: 91 private:
91 friend class net::test::QuicServerPeer; 92 friend class net::test::QuicServerPeer;
92 93
93 // Initialize the internal state of the server. 94 // Initialize the internal state of the server.
94 void Initialize(); 95 void Initialize();
95 96
96 // Accepts data from the framer and demuxes clients to sessions. 97 // Accepts data from the framer and demuxes clients to sessions.
97 scoped_ptr<QuicDispatcher> dispatcher_; 98 std::unique_ptr<QuicDispatcher> dispatcher_;
98 // Frames incoming packets and hands them to the dispatcher. 99 // Frames incoming packets and hands them to the dispatcher.
99 EpollServer epoll_server_; 100 EpollServer epoll_server_;
100 101
101 // The port the server is listening on. 102 // The port the server is listening on.
102 int port_; 103 int port_;
103 104
104 // Listening connection. Also used for outbound client communication. 105 // Listening connection. Also used for outbound client communication.
105 int fd_; 106 int fd_;
106 107
107 // If overflow_supported_ is true this will be the number of packets dropped 108 // If overflow_supported_ is true this will be the number of packets dropped
(...skipping 14 matching lines...) Expand all
122 QuicCryptoServerConfig::ConfigOptions crypto_config_options_; 123 QuicCryptoServerConfig::ConfigOptions crypto_config_options_;
123 124
124 // This vector contains QUIC versions which we currently support. 125 // This vector contains QUIC versions which we currently support.
125 // This should be ordered such that the highest supported version is the first 126 // This should be ordered such that the highest supported version is the first
126 // element, with subsequent elements in descending order (versions can be 127 // element, with subsequent elements in descending order (versions can be
127 // skipped as necessary). 128 // skipped as necessary).
128 QuicVersionVector supported_versions_; 129 QuicVersionVector supported_versions_;
129 130
130 // Point to a QuicPacketReader object on the heap. The reader allocates more 131 // Point to a QuicPacketReader object on the heap. The reader allocates more
131 // space than allowed on the stack. 132 // space than allowed on the stack.
132 scoped_ptr<QuicPacketReader> packet_reader_; 133 std::unique_ptr<QuicPacketReader> packet_reader_;
133 134
134 DISALLOW_COPY_AND_ASSIGN(QuicServer); 135 DISALLOW_COPY_AND_ASSIGN(QuicServer);
135 }; 136 };
136 137
137 } // namespace net 138 } // namespace net
138 139
139 #endif // NET_TOOLS_QUIC_QUIC_SERVER_H_ 140 #endif // NET_TOOLS_QUIC_QUIC_SERVER_H_
OLDNEW
« no previous file with comments | « net/tools/quic/quic_packet_writer_wrapper.h ('k') | net/tools/quic/quic_server.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698