blob: 4d0cff7f249f837d10f12384becb92cb3bf8b9fc [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_CONNECTION_CLOSE_FRAME_H_
6#define QUICHE_QUIC_CORE_FRAMES_QUIC_CONNECTION_CLOSE_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"
13#include "net/third_party/quiche/src/quic/platform/api/quic_export.h"
QUICHE teama6ef0a62019-03-07 20:34:33 -050014
15namespace quic {
16
fkastenholze9d71a82019-04-09 05:12:13 -070017// There are three different forms of CONNECTION_CLOSE. UNINITIALIZED is
18// included explicitly for the QuicConnectionCloseFrame so that when the object
19// is constructed, a valid enumeration, indicating that the type is not known,
20// can be set.
21typedef enum QuicConnectionCloseType {
22 UNINITIALIZED = 0,
23 GOOGLE_QUIC_CONNECTION_CLOSE = 1,
24 IETF_QUIC_TRANSPORT_CONNECTION_CLOSE = 2,
25 IETF_QUIC_APPLICATION_CONNECTION_CLOSE = 3
26} QuicConnectionCloseType;
27QUIC_EXPORT_PRIVATE std::ostream& operator<<(
28 std::ostream& os,
29 const QuicConnectionCloseType type);
30
QUICHE teama6ef0a62019-03-07 20:34:33 -050031struct QUIC_EXPORT_PRIVATE QuicConnectionCloseFrame {
32 QuicConnectionCloseFrame();
fkastenholze9d71a82019-04-09 05:12:13 -070033 QuicConnectionCloseFrame(QuicErrorCode error_code);
vasilvvc48c8712019-03-11 13:38:16 -070034 QuicConnectionCloseFrame(QuicErrorCode error_code, std::string error_details);
fkastenholze9d71a82019-04-09 05:12:13 -070035 QuicConnectionCloseFrame(QuicIetfTransportErrorCodes transport_error_code,
36 QuicErrorCode extracted_error_code,
vasilvvc48c8712019-03-11 13:38:16 -070037 std::string error_details,
QUICHE teama6ef0a62019-03-07 20:34:33 -050038 uint64_t frame_type);
39
40 friend QUIC_EXPORT_PRIVATE std::ostream& operator<<(
41 std::ostream& os,
42 const QuicConnectionCloseFrame& c);
43
fkastenholze9d71a82019-04-09 05:12:13 -070044 // Indicates whether the received CONNECTION_CLOSE frame is a Google QUIC
45 // CONNECTION_CLOSE, IETF QUIC CONNECTION_CLOSE
46 QuicConnectionCloseType close_type;
47
48 // This is the error field in the frame.
49 // The CONNECTION_CLOSE frame reports a 16-bit error code:
50 // - The transport error code as reported in a CONNECTION_CLOSE/Transport
51 // frame,
52 // - An opaque 16-bit code as reported in CONNECTION_CLOSE/Application frames,
53 // - A QuicErrorCode, which is used in Google QUIC.
QUICHE teama6ef0a62019-03-07 20:34:33 -050054 union {
fkastenholze9d71a82019-04-09 05:12:13 -070055 QuicIetfTransportErrorCodes transport_error_code;
56 uint16_t application_error_code;
57 QuicErrorCode quic_error_code;
QUICHE teama6ef0a62019-03-07 20:34:33 -050058 };
fkastenholze9d71a82019-04-09 05:12:13 -070059
60 // This error code is extracted from, or added to, the "QuicErrorCode:
61 // QUIC_...(123)" text in the error_details. It provides fine-grained
62 // information as to the source of the error.
63 QuicErrorCode extracted_error_code;
64
65 // String with additional error details. In some circumstances, we will add a
66 // "QuicErrorCode: QUIC_...(123)" string indicating a more specific internal
67 // error code.
vasilvvc48c8712019-03-11 13:38:16 -070068 std::string error_details;
QUICHE teama6ef0a62019-03-07 20:34:33 -050069
fkastenholze9d71a82019-04-09 05:12:13 -070070 // The frame type present in the IETF transport connection close frame.
71 // Not populated for the Google QUIC or application connection close frames.
QUICHE teama6ef0a62019-03-07 20:34:33 -050072 // Contains the type of frame that triggered the connection close. Made a
73 // uint64, as opposed to the QuicIetfFrameType, to support possible
74 // extensions as well as reporting invalid frame types received from the peer.
fkastenholze9d71a82019-04-09 05:12:13 -070075 uint64_t transport_close_frame_type;
QUICHE teama6ef0a62019-03-07 20:34:33 -050076};
77
78} // namespace quic
79
80#endif // QUICHE_QUIC_CORE_FRAMES_QUIC_CONNECTION_CLOSE_FRAME_H_