blob: 7aa4df325fbc184987f20c52721bf0b159a030ed [file] [log] [blame]
QUICHE teama6ef0a62019-03-07 20:34:33 -05001// 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.
4
QUICHE team5be974e2020-12-29 18:35:24 -05005#include "quic/test_tools/simulator/port.h"
QUICHE teama6ef0a62019-03-07 20:34:33 -05006
7namespace quic {
8namespace simulator {
9
10Packet::Packet()
11 : source(), destination(), tx_timestamp(QuicTime::Zero()), size(0) {}
12
13Packet::~Packet() {}
14
15Packet::Packet(const Packet& packet) = default;
16
vasilvvc48c8712019-03-11 13:38:16 -070017Endpoint::Endpoint(Simulator* simulator, std::string name)
QUICHE teama6ef0a62019-03-07 20:34:33 -050018 : Actor(simulator, name) {}
19
20} // namespace simulator
21} // namespace quic