blob: b0cef4534fbd2c21e0c5ae4760d654d1d5062b93 [file] [log] [blame]
// 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.
#ifndef QUICHE_QUIC_CORE_FRAMES_QUIC_CONNECTION_CLOSE_FRAME_H_
#define QUICHE_QUIC_CORE_FRAMES_QUIC_CONNECTION_CLOSE_FRAME_H_
#include <ostream>
#include <string>
#include "net/third_party/quiche/src/quic/core/quic_error_codes.h"
#include "net/third_party/quiche/src/quic/core/quic_types.h"
#include "net/third_party/quiche/src/quic/platform/api/quic_export.h"
namespace quic {
struct QUIC_EXPORT_PRIVATE QuicConnectionCloseFrame {
QuicConnectionCloseFrame();
// TODO(fkastenholz): After migration to supporting IETF QUIC, this probably
// should be deprecated.
QuicConnectionCloseFrame(QuicErrorCode error_code, std::string error_details);
// Sets close_type to IETF_QUIC_APPLICATION_CONNECTION_CLOSE.
QuicConnectionCloseFrame(QuicErrorCode quic_error_code,
std::string error_details,
uint64_t ietf_application_error_code);
// Sets close_type to IETF_QUIC_TRANSPORT_CONNECTION_CLOSE.
QuicConnectionCloseFrame(QuicErrorCode quic_error_code,
std::string error_details,
QuicIetfTransportErrorCodes transport_error_code,
uint64_t transport_frame_type);
friend QUIC_EXPORT_PRIVATE std::ostream& operator<<(
std::ostream& os,
const QuicConnectionCloseFrame& c);
// Indicates whether the received CONNECTION_CLOSE frame is a Google QUIC
// CONNECTION_CLOSE, IETF QUIC CONNECTION_CLOSE.
QuicConnectionCloseType close_type;
// This is the error field in the frame.
// The CONNECTION_CLOSE frame reports an error code:
// - The transport error code as reported in a CONNECTION_CLOSE/Transport
// frame (serialized as a VarInt),
// - An opaque 64-bit code as reported in CONNECTION_CLOSE/Application frames
// (serialized as a VarInt),,
// - A 16 bit QuicErrorCode, which is used in Google QUIC.
union {
QuicIetfTransportErrorCodes transport_error_code;
uint64_t application_error_code;
QuicErrorCode quic_error_code;
};
// For IETF QUIC frames, this is the error code is extracted from, or added
// to, the error details text. For received Google QUIC frames, the Google
// QUIC error code from the frame's error code field is copied here (as well
// as in quic_error_code, above).
QuicErrorCode extracted_error_code;
// String with additional error details. "QuicErrorCode: 123" will be appended
// to the error details when sending IETF QUIC Connection Close and
// Application Close frames and parsed into extracted_error_code upon receipt,
// when present.
std::string error_details;
// The frame type present in the IETF transport connection close frame.
// Not populated for the Google QUIC or application connection close frames.
// Contains the type of frame that triggered the connection close. Made a
// uint64, as opposed to the QuicIetfFrameType, to support possible
// extensions as well as reporting invalid frame types received from the peer.
uint64_t transport_close_frame_type;
};
} // namespace quic
#endif // QUICHE_QUIC_CORE_FRAMES_QUIC_CONNECTION_CLOSE_FRAME_H_