DnsServer: Fixed issue in AcceptQuicConnectionAsync() that caused QUIC service to stop.

This commit is contained in:
Shreyas Zare 2025-04-19 15:50:20 +05:30
parent 806d63e84f
commit 72f905d220

View File

@ -804,6 +804,10 @@ namespace DnsServerCore.Dns
_ = ProcessQuicConnectionAsync(quicConnection);
}
catch (AuthenticationException)
{
//ignore failed connection handshake
}
catch (QuicException ex)
{
if (ex.InnerException is OperationCanceledException)