aspnetcore/src/Microsoft.AspNet.Server.Kes.../Infrastructure/Constants.cs

16 lines
507 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.
namespace Microsoft.AspNet.Server.Kestrel.Infrastructure
{
internal class Constants
{
public const int ListenBacklog = 128;
/// <summary>
/// Prefix of host name used to specify Unix sockets in the configuration.
/// </summary>
public const string UnixPipeHostPrefix = "unix:/";
}
}