using FastGithub.DomainResolve;
namespace FastGithub.HttpServer
{
    /// 
    /// github的ssh代理处理者
    /// 
    sealed class GithubSshReverseProxyHandler : TcpReverseProxyHandler
    {
        /// 
        /// github的ssh代理处理者
        /// 
        /// 
        public GithubSshReverseProxyHandler(IDomainResolver domainResolver)
            : base(domainResolver, new("github.com", 22))
        {
        }
    }
}