quickfix to test netorking

This commit is contained in:
SCM6WE
2021-09-21 14:01:36 +02:00
parent 4780fc3b03
commit b2c779f546
2 changed files with 4 additions and 1 deletions

View File

@@ -30,6 +30,7 @@ namespace PolyChat.Models
Server = new SocketIOServer(new SocketIOServerOption(Port));
Server.OnConnection((socket) => connectNewClient(socket));
Server.Start();
Debug.WriteLine($"Your ip is: {ownIP}");
Debug.WriteLine($"Server started, binding to port {Port}, waiting for connection...");
}