blob: 55d356bfd40e7d38ed4021aecd73e695de788973 [file] [log] [blame]
QUICHE teama6ef0a62019-03-07 20:34:33 -05001// Copyright (c) 2016 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
5#include "net/third_party/quiche/src/quic/core/frames/quic_connection_close_frame.h"
6
7namespace quic {
8
9QuicConnectionCloseFrame::QuicConnectionCloseFrame()
10 : error_code(QUIC_NO_ERROR), frame_type(0) {}
11
12QuicConnectionCloseFrame::QuicConnectionCloseFrame(QuicErrorCode error_code,
vasilvvc48c8712019-03-11 13:38:16 -070013 std::string error_details)
QUICHE teama6ef0a62019-03-07 20:34:33 -050014 : error_code(error_code),
15 error_details(std::move(error_details)),
16 frame_type(0) {}
17
18QuicConnectionCloseFrame::QuicConnectionCloseFrame(
19 QuicIetfTransportErrorCodes ietf_error_code,
vasilvvc48c8712019-03-11 13:38:16 -070020 std::string error_details,
QUICHE teama6ef0a62019-03-07 20:34:33 -050021 uint64_t frame_type)
22 : ietf_error_code(ietf_error_code),
23 error_details(std::move(error_details)),
24 frame_type(frame_type) {}
25
26std::ostream& operator<<(
27 std::ostream& os,
28 const QuicConnectionCloseFrame& connection_close_frame) {
29 os << "{ error_code: " << connection_close_frame.error_code
30 << ", error_details: '" << connection_close_frame.error_details
31 << "', frame_type: " << connection_close_frame.frame_type << "}\n";
32 return os;
33}
34
35} // namespace quic