We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f644aeb commit 948702cCopy full SHA for 948702c
.gitignore
@@ -0,0 +1,5 @@
1
+/Server/bin
2
+/Server/obj
3
+/Client/bin
4
+/Client/obj
5
+/.vs
Server/WebsocketServer.cs
@@ -93,7 +93,9 @@ private async void ProcessRequest(HttpListenerContext httpListenerContext)
93
}
94
catch (Exception e)
95
{
96
- Console.WriteLine("Exception: {0}", e);
+ //Console.WriteLine("Exception: {0}", e);
97
+ Console.WriteLine("Exception: {0}", e.Message);
98
+ lock (_lock) _clients.Remove(webSocket);
99
100
finally
101
0 commit comments