-
Notifications
You must be signed in to change notification settings - Fork 10.4k
Closed
Labels
area-networkingIncludes servers, yarp, json patch, bedrock, websockets, http client factory, and http abstractionsIncludes servers, yarp, json patch, bedrock, websockets, http client factory, and http abstractionsfeature-kestrel
Milestone
Description
Background and Motivation
New option to support LF as a request line terminator.
Proposed API
public class KestrelServerOptions
{
/// <summary>
/// Gets or sets a value that controls whether the request lines
/// can end with LF only instead of CR/LF.
/// </summary>
/// <remarks>
/// Defaults to false.
/// </remarks>
+ public bool AllowLineFeedTerminator { get; set; }
}
Usage Examples
n/a
Alternative Designs
n/a
Risks
The change is non-breaking, the default is not activating the new feature. The feature has been verified in production by Azure App Service.
Metadata
Metadata
Assignees
Labels
area-networkingIncludes servers, yarp, json patch, bedrock, websockets, http client factory, and http abstractionsIncludes servers, yarp, json patch, bedrock, websockets, http client factory, and http abstractionsfeature-kestrel