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

Unified Diff: net/tools/quic/quic_server.cc

Issue 1405843003: relnote: n/a (standalone quic_server binary). Cleanup: Use C++11 delegate (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@Reduce_size_of_TransmissionInfo_104242241
Patch Set: Created 5 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/quic/quic_server.cc
diff --git a/net/tools/quic/quic_server.cc b/net/tools/quic/quic_server.cc
index c71f437d8acebbb2e9b1fc54219e628a7acdbfa0..966c2cc24b1de09fa776bf69ef9d78aeafd08fdb 100644
--- a/net/tools/quic/quic_server.cc
+++ b/net/tools/quic/quic_server.cc
@@ -48,18 +48,7 @@ const char kSourceAddressTokenSecret[] = "secret";
} // namespace
QuicServer::QuicServer(ProofSource* proof_source)
- : port_(0),
- fd_(-1),
- packets_dropped_(0),
- overflow_supported_(false),
- use_recvmmsg_(false),
- crypto_config_(kSourceAddressTokenSecret,
- QuicRandom::GetInstance(),
- proof_source),
- supported_versions_(QuicSupportedVersions()),
- packet_reader_(new QuicPacketReader()) {
- Initialize();
-}
+ : QuicServer(proof_source, QuicConfig(), QuicSupportedVersions()) {}
QuicServer::QuicServer(ProofSource* proof_source,
const QuicConfig& config,
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698