/
githubmirror
/
aspnetcore
Обзор
Документация
Войти
/
githubmirror
/
aspnetcore
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Shared/ServerInfrastructure/Http2/Http2SettingsParameter.cs
16 строк
614 B
Chris Ross
Implement Http/2 WebSockets (#41558)
08 июн 2022, 20:18
Не верифицирован
08 июн 2022, 20:18
b14c9b8
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http2; // https://www.iana.org/assignments/http2-parameters/http2-parameters.xhtml#settings internal enum Http2SettingsParameter : ushort { SETTINGS_HEADER_TABLE_SIZE = 0x1, SETTINGS_ENABLE_PUSH = 0x2, SETTINGS_MAX_CONCURRENT_STREAMS = 0x3, SETTINGS_INITIAL_WINDOW_SIZE = 0x4, SETTINGS_MAX_FRAME_SIZE = 0x5, SETTINGS_MAX_HEADER_LIST_SIZE = 0x6, SETTINGS_ENABLE_CONNECT_PROTOCOL = 0x8, }