// 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; /// /// Prefix of host name used to specify Unix sockets in the configuration. /// public const string UnixPipeHostPrefix = "unix:/"; } }