FastGithub/FastGithub.HttpServer/GithubSshReverseProxyHandler.cs
2021-11-24 08:57:47 +08:00

20 lines
517 B
C#

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