// Copyright 2017 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "quiche/quic/test_tools/bad_packet_writer.h" namespace quic { namespace test { BadPacketWriter::BadPacketWriter(size_t packet_causing_write_error, int error_code) : … { … } BadPacketWriter::~BadPacketWriter() { … } WriteResult BadPacketWriter::WritePacket(const char* buffer, size_t buf_len, const QuicIpAddress& self_address, const QuicSocketAddress& peer_address, PerPacketOptions* options, const QuicPacketWriterParams& params) { … } } // namespace test } // namespace quic