This repository was archived by the owner on Jul 9, 2023. It is now read-only.

Description
foreach (var endPoint in ProxyEndPoints)
{
Listen(endPoint);
}
CertificateManager.ClearIdleCertificates();
if (RunTime.IsWindows && !RunTime.IsRunningOnMono)
{
WinAuthEndPoint.ClearIdleStates(2);
}
should probably change to doing the Listen call last especially b/c there is a Task.Delay loop in the Clear*() functions.
CertificateManager.ClearIdleCertificates();
if (RunTime.IsWindows && !RunTime.IsRunningOnMono)
{
WinAuthEndPoint.ClearIdleStates(2);
}
foreach (var endPoint in ProxyEndPoints)
{
Listen(endPoint);
}