blob: ecceee6fc0ec9fac963f718ed79d214ad8355d19 [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#ifndef QUICHE_QUIC_CORE_FRAMES_QUIC_GOAWAY_FRAME_H_
6#define QUICHE_QUIC_CORE_FRAMES_QUIC_GOAWAY_FRAME_H_
7
8#include <ostream>
vasilvv872e7a32019-03-12 16:42:44 -07009#include <string>
QUICHE teama6ef0a62019-03-07 20:34:33 -050010
11#include "net/third_party/quiche/src/quic/core/quic_error_codes.h"
12#include "net/third_party/quiche/src/quic/core/quic_types.h"
QUICHE teama6ef0a62019-03-07 20:34:33 -050013
14namespace quic {
15
16struct QUIC_EXPORT_PRIVATE QuicGoAwayFrame {
17 QuicGoAwayFrame();
18 QuicGoAwayFrame(QuicControlFrameId control_frame_id,
19 QuicErrorCode error_code,
20 QuicStreamId last_good_stream_id,
vasilvvc48c8712019-03-11 13:38:16 -070021 const std::string& reason);
QUICHE teama6ef0a62019-03-07 20:34:33 -050022
23 friend QUIC_EXPORT_PRIVATE std::ostream& operator<<(std::ostream& os,
24 const QuicGoAwayFrame& g);
25
26 // A unique identifier of this control frame. 0 when this frame is received,
27 // and non-zero when sent.
28 QuicControlFrameId control_frame_id;
29 QuicErrorCode error_code;
30 QuicStreamId last_good_stream_id;
vasilvvc48c8712019-03-11 13:38:16 -070031 std::string reason_phrase;
QUICHE teama6ef0a62019-03-07 20:34:33 -050032};
33
34} // namespace quic
35
36#endif // QUICHE_QUIC_CORE_FRAMES_QUIC_GOAWAY_FRAME_H_