Permalink
Please sign in to comment.
Showing
with
189 additions
and 52 deletions.
- +92 −1 src/Microsoft.AspNetCore.Server.Kestrel/BadHttpRequestException.cs
- +37 −23 src/Microsoft.AspNetCore.Server.Kestrel/Internal/Http/Frame.cs
- +1 −1 src/Microsoft.AspNetCore.Server.Kestrel/Internal/Http/FrameHeaders.Generated.cs
- +11 −6 src/Microsoft.AspNetCore.Server.Kestrel/Internal/Http/FrameHeaders.cs
- +2 −2 src/Microsoft.AspNetCore.Server.Kestrel/Internal/Http/FrameOfT.cs
- +11 −16 src/Microsoft.AspNetCore.Server.Kestrel/Internal/Http/MessageBody.cs
- +31 −0 src/Microsoft.AspNetCore.Server.Kestrel/Internal/Http/RequestRejectionReason.cs
- +1 −1 src/Microsoft.AspNetCore.Server.Kestrel/Internal/Http/UrlPathDecoder.cs
- +2 −1 src/Microsoft.AspNetCore.Server.Kestrel/Internal/Infrastructure/MemoryPoolIteratorExtensions.cs
- +1 −1 tools/Microsoft.AspNetCore.Server.Kestrel.GeneratedCode/KnownHeaders.cs
93
src/Microsoft.AspNetCore.Server.Kestrel/BadHttpRequestException.cs
60
src/Microsoft.AspNetCore.Server.Kestrel/Internal/Http/Frame.cs
2
src/Microsoft.AspNetCore.Server.Kestrel/Internal/Http/FrameHeaders.Generated.cs
17
src/Microsoft.AspNetCore.Server.Kestrel/Internal/Http/FrameHeaders.cs
4
src/Microsoft.AspNetCore.Server.Kestrel/Internal/Http/FrameOfT.cs
27
src/Microsoft.AspNetCore.Server.Kestrel/Internal/Http/MessageBody.cs
31
src/Microsoft.AspNetCore.Server.Kestrel/Internal/Http/RequestRejectionReason.cs
| @@ -0,0 +1,31 @@ | ||
| +// 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.Internal.Http | ||
| +{ | ||
| + public enum RequestRejectionReason | ||
| + { | ||
| + MissingMethod, | ||
| + InvalidMethod, | ||
| + MissingRequestTarget, | ||
| + MissingHTTPVersion, | ||
| + UnrecognizedHTTPVersion, | ||
| + MissingLFInRequestLine, | ||
| + HeadersCorruptedInvalidHeaderSequence, | ||
| + HeaderLineMustNotStartWithWhitespace, | ||
| + NoColonCharacterFoundInHeaderLine, | ||
| + WhitespaceIsNotAllowedInHeaderName, | ||
| + HeaderLineMustEndInCRLFOnlyCRFound, | ||
| + HeaderValueLineFoldingNotSupported, | ||
| + MalformedRequestLineStatus, | ||
| + MalformedRequestInvalidHeaders, | ||
| + InvalidContentLength, | ||
| + UnexpectedEndOfRequestContent, | ||
| + BadChunkSuffix, | ||
| + BadChunkSizeData, | ||
| + ChunkedRequestIncomplete, | ||
| + PathContainsNullCharacters, | ||
| + InvalidCharactersInHeaderName, | ||
| + NonAsciiOrNullCharactersInInputString | ||
| + } | ||
| +} |
2
src/Microsoft.AspNetCore.Server.Kestrel/Internal/Http/UrlPathDecoder.cs
3
...crosoft.AspNetCore.Server.Kestrel/Internal/Infrastructure/MemoryPoolIteratorExtensions.cs
2
tools/Microsoft.AspNetCore.Server.Kestrel.GeneratedCode/KnownHeaders.cs
0 comments on commit
2244f19