From c1fec0d6c9a5b23d69cbb7aff0eeb00ed694fbef Mon Sep 17 00:00:00 2001 From: Alexandru Macocian Date: Wed, 4 Mar 2020 10:39:02 +0100 Subject: [PATCH] Fixed a bug that caused continious exceptions during ssl authentication --- MTSC/MTSC.csproj | 6 +++--- MTSC/Server/Server.cs | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/MTSC/MTSC.csproj b/MTSC/MTSC.csproj index 28504f8..bbd7d0e 100644 --- a/MTSC/MTSC.csproj +++ b/MTSC/MTSC.csproj @@ -5,12 +5,12 @@ netcoreapp2.1;net48;netstandard2.0;netcoreapp3.0 - 1.6.6 + 1.6.7 Alexandru-Victor Macocian MTSC Modular TCP Server and Client - 0.1.6.6 - 0.1.6.6 + 0.1.6.7 + 0.1.6.7 true AnyCPU;x64 https://github.com/AlexMacocian/MTSC diff --git a/MTSC/Server/Server.cs b/MTSC/Server/Server.cs index 10a4f9c..f195ab1 100644 --- a/MTSC/Server/Server.cs +++ b/MTSC/Server/Server.cs @@ -313,6 +313,7 @@ namespace MTSC.Server } catch(Exception e) { + clientStruct.ToBeRemoved = true; foreach (IExceptionHandler exceptionHandler in exceptionHandlers) { if (exceptionHandler.HandleException(e))