mainView is now binded

This commit is contained in:
shinichi
2020-10-09 11:40:52 +02:00
parent 2cb3fd5ec3
commit dffeb39337
3 changed files with 4 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
using Client;
using ClientApp.Utils;
using System;
using System.Collections.Generic;
using System.IO.Pipes;
@@ -31,7 +31,7 @@ namespace Server
private void OnConnect(IAsyncResult ar)
{
var tcpClient = listener.EndAcceptTcpClient(ar);
Console.WriteLine($"Client connected from {tcpClient.Client.RemoteEndPoint}");
clients.Add(new Client(this, tcpClient));