using FastGithub.Configuration; using Microsoft.Extensions.Logging; using System.Runtime.Versioning; namespace FastGithub.PacketIntercept.Tcp { /// /// ssh拦截器 /// [SupportedOSPlatform("windows")] sealed class SshInterceptor : TcpInterceptor { /// /// ssh拦截器 /// /// public SshInterceptor(ILogger logger) : base(22, GlobalListener.SshPort, logger) { } } }