// 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. using System; using Microsoft.Extensions.Logging; namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal { public interface ISocketsTrace : ILogger { void ConnectionReadFin(string connectionId); void ConnectionWriteFin(string connectionId, string reason); void ConnectionError(string connectionId, Exception ex); void ConnectionReset(string connectionId); void ConnectionPause(string connectionId); void ConnectionResume(string connectionId); } }