blob: 4ee41b97fd9214da8eac5626978343fbd4656360 [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/core/quic_versions.h"
#include "net/third_party/quiche/src/quic/platform/api/quic_export.h"
namespace quic {
struct QUIC_EXPORT_PRIVATE QuicConnectionCloseFrame {
QuicConnectionCloseFrame();
// Builds a connection close frame based on the transport version
// and the mapping of error_code. THIS IS THE PREFERRED C'TOR
// TO USE IF YOU NEED TO CREATE A CONNECTION-CLOSE-FRAME AND
// HAVE IT BE CORRECT FOR THE VERSION AND CODE MAPPINGS.
QuicConnectionCloseFrame(QuicTransportVersion transport_version,
QuicErrorCode error_code,
std::string error_phrase,
uint64_t transport_close_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_