Files
netch/Netch/Servers/Socks5/Socks5LocalServer.cs
2021-08-31 11:48:49 +08:00

19 lines
580 B
C#

namespace Netch.Servers
{
// TODO rename it
/// <summary>
/// Encrypted proxy client's local socks5 server
/// (<see cref="RemoteHostname"/> property is used for saving remote address/hostname for special use)
/// </summary>
public class Socks5LocalServer : Socks5Server
{
public Socks5LocalServer(string hostname, ushort port, string remoteHostname)
{
Hostname = hostname;
Port = port;
RemoteHostname = remoteHostname;
}
public string RemoteHostname { get; set; }
}
}