// Copyright 2024 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_RESET_STREAM_AT_FRAME_H_ #define QUICHE_QUIC_CORE_FRAMES_QUIC_RESET_STREAM_AT_FRAME_H_ #include <cstdint> #include <ostream> #include "quiche/quic/core/quic_constants.h" #include "quiche/quic/core/quic_types.h" #include "quiche/common/platform/api/quiche_export.h" namespace quic { // RESET_STREAM_AT allows a QUIC application to reset a stream, but only after // the receiver consumes data up to a certain point. Defined in // <https://datatracker.ietf.org/doc/draft-ietf-quic-reliable-stream-reset/>. struct QUICHE_EXPORT QuicResetStreamAtFrame { … }; } // namespace quic #endif // QUICHE_QUIC_CORE_FRAMES_QUIC_RESET_STREAM_AT_FRAME_H_