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