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

// Copyright (c) 2016 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_goaway_frame.h"

#include <ostream>
#include <string>

namespace quic {

QuicGoAwayFrame::QuicGoAwayFrame(QuicControlFrameId control_frame_id,
                                 QuicErrorCode error_code,
                                 QuicStreamId last_good_stream_id,
                                 const std::string& reason)
    :{}

std::ostream& operator<<(std::ostream& os,
                         const QuicGoAwayFrame& goaway_frame) {}

bool QuicGoAwayFrame::operator==(const QuicGoAwayFrame& rhs) const {}

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

}  // namespace quic