QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1 | // 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 | |
| 7 | namespace quic { |
| 8 | |
| 9 | QuicConnectionCloseFrame::QuicConnectionCloseFrame() |
| 10 | : error_code(QUIC_NO_ERROR), frame_type(0) {} |
| 11 | |
| 12 | QuicConnectionCloseFrame::QuicConnectionCloseFrame(QuicErrorCode error_code, |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 13 | std::string error_details) |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 14 | : error_code(error_code), |
| 15 | error_details(std::move(error_details)), |
| 16 | frame_type(0) {} |
| 17 | |
| 18 | QuicConnectionCloseFrame::QuicConnectionCloseFrame( |
| 19 | QuicIetfTransportErrorCodes ietf_error_code, |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 20 | std::string error_details, |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 21 | uint64_t frame_type) |
| 22 | : ietf_error_code(ietf_error_code), |
| 23 | error_details(std::move(error_details)), |
| 24 | frame_type(frame_type) {} |
| 25 | |
| 26 | std::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 |