示例#1
0
 public void Start(ITelnetConnection clientSocket, ITelnetConnection targetClient)
 {
     _clientSocket = clientSocket;
     _targetClient = targetClient;
     //_commsThread.Start();
     HandleClientComms();
 }
 public ThermostatRepository(ITelnetConnection telnetConnection)
 {
     _telnetConnection = telnetConnection;
 }
示例#3
0
 public ReTelnetServer(ITcpListener tcpListener, ITelnetConnection targetServer)
 {
     _tcpListener = tcpListener;
     _targetServer = targetServer;
     Console.WriteLine("Server started");
 }
 public void Start(ITelnetConnection client, ITelnetConnection targetServer)
 {
 }