Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add [RequiresPreviewFeaturesAttribute] to Http3
  • Loading branch information
wtgodbe authored Jul 28, 2021
commit 3ab55a53c30164f749aa2c18d8c1db60006b86a4
2 changes: 2 additions & 0 deletions src/Servers/Kestrel/Core/src/HttpProtocols.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ public enum HttpProtocols
Http1 = 0x1,
Http2 = 0x2,
Http1AndHttp2 = Http1 | Http2,
[RequiresPreviewFeaturesAttribute]
Http3 = 0x4,
[RequiresPreviewFeaturesAttribute]
Http1AndHttp2AndHttp3 = Http1 | Http2 | Http3
}
}