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

Side by Side Diff: net/quic/core/congestion_control/simulation/port.cc

Issue 2323963002: Implement an event-based simulator for QuicConnection (Closed)
Patch Set: Adding missing files. Created 4 years, 3 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
OLDNEW
(Empty)
1 #include "net/quic/core/congestion_control/simulation/port.h"
2
3 namespace net {
4 namespace simulation {
5
6 Packet::Packet()
7 : source(), destination(), tx_timestamp(QuicTime::Zero()), size(0) {}
8
9 Endpoint::Endpoint(Simulator* simulator, std::string name)
10 : Actor(simulator, name) {}
11
12 } // namespace simulation
13 } // namespace net
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698