18 lines
442 B
C#
18 lines
442 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.
|
|
|
|
using System;
|
|
|
|
namespace Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http2
|
|
{
|
|
[Flags]
|
|
public enum Http2HeadersFrameFlags : byte
|
|
{
|
|
NONE = 0x0,
|
|
END_STREAM = 0x1,
|
|
END_HEADERS = 0x4,
|
|
PADDED = 0x8,
|
|
PRIORITY = 0x20
|
|
}
|
|
}
|