chromium/net/third_party/quiche/src/quiche/quic/core/frames/quic_reset_stream_at_frame.cc

// Copyright 2024 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/core/frames/quic_reset_stream_at_frame.h"

#include <cstdint>
#include <ostream>

#include "quiche/quic/core/quic_types.h"

namespace quic {

QuicResetStreamAtFrame::QuicResetStreamAtFrame(
    QuicControlFrameId control_frame_id, QuicStreamId stream_id, uint64_t error,
    QuicStreamOffset final_offset, QuicStreamOffset reliable_offset)
    :{}

std::ostream& operator<<(std::ostream& os,
                         const QuicResetStreamAtFrame& frame) {}

bool QuicResetStreamAtFrame::operator==(
    const QuicResetStreamAtFrame& rhs) const {}
bool QuicResetStreamAtFrame::operator!=(
    const QuicResetStreamAtFrame& rhs) const {}

}  // namespace quic