Fixed a bug that caused continious exceptions during ssl authentication

This commit is contained in:
Alexandru Macocian
2020-03-04 10:39:02 +01:00
parent 533d8f8fc7
commit c1fec0d6c9
2 changed files with 4 additions and 3 deletions
+3 -3
View File
@@ -5,12 +5,12 @@
<TargetFrameworks>netcoreapp2.1;net48;netstandard2.0;netcoreapp3.0</TargetFrameworks>
<ApplicationIcon />
<StartupObject />
<Version>1.6.6</Version>
<Version>1.6.7</Version>
<Authors>Alexandru-Victor Macocian</Authors>
<Product>MTSC</Product>
<Description>Modular TCP Server and Client</Description>
<AssemblyVersion>0.1.6.6</AssemblyVersion>
<FileVersion>0.1.6.6</FileVersion>
<AssemblyVersion>0.1.6.7</AssemblyVersion>
<FileVersion>0.1.6.7</FileVersion>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Platforms>AnyCPU;x64</Platforms>
<PackageProjectUrl>https://github.com/AlexMacocian/MTSC</PackageProjectUrl>
+1
View File
@@ -313,6 +313,7 @@ namespace MTSC.Server
}
catch(Exception e)
{
clientStruct.ToBeRemoved = true;
foreach (IExceptionHandler exceptionHandler in exceptionHandlers)
{
if (exceptionHandler.HandleException(e))