add additional http server error handling

This commit is contained in:
Luke Pulverenti
2016-12-20 00:21:52 -05:00
parent a93c2682d9
commit 40e8d0c75e
4 changed files with 11 additions and 4 deletions

View File

@@ -182,6 +182,10 @@ namespace Rssdp.Infrastructure
try
{
await socket.SendAsync(messageData, messageData.Length, destination).ConfigureAwait(false);
}
catch (ObjectDisposedException)
{
}
catch (Exception ex)
{