DnsServer: Fixed issue in AcceptQuicConnectionAsync() that caused QUIC service to stop.
This commit is contained in:
parent
806d63e84f
commit
72f905d220
@ -804,6 +804,10 @@ namespace DnsServerCore.Dns
|
||||
|
||||
_ = ProcessQuicConnectionAsync(quicConnection);
|
||||
}
|
||||
catch (AuthenticationException)
|
||||
{
|
||||
//ignore failed connection handshake
|
||||
}
|
||||
catch (QuicException ex)
|
||||
{
|
||||
if (ex.InnerException is OperationCanceledException)
|
||||
|
Loading…
x
Reference in New Issue
Block a user