aspnetcore/src/Kestrel.Core/Internal/Http2/Http2Frame.RstStream.cs

25 lines
908 B
C#

// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
namespace Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http2
{
/* https://tools.ietf.org/html/rfc7540#section-6.4
+---------------------------------------------------------------+
| Error Code (32) |
+---------------------------------------------------------------+
*/
public partial class Http2Frame
{
public Http2ErrorCode RstStreamErrorCode { get; set; }
public void PrepareRstStream(int streamId, Http2ErrorCode errorCode)
{
PayloadLength = 4;
Type = Http2FrameType.RST_STREAM;
Flags = 0;
StreamId = streamId;
RstStreamErrorCode = errorCode;
}
}
}