aboutsummaryrefslogtreecommitdiff
path: root/RSSDP
diff options
context:
space:
mode:
authorShadowghost <Ghost_of_Stone@web.de>2022-10-14 10:25:57 +0200
committerShadowghost <Ghost_of_Stone@web.de>2022-10-14 10:25:57 +0200
commit4aec41752f63594e169511a314f8f86a0dde9c35 (patch)
treed3905fc298631a84dd62e63ed9d90531bcf49be5 /RSSDP
parent7b90fcd0531e1fd414df404b58f2f05b0641be01 (diff)
Apply review suggestions
Diffstat (limited to 'RSSDP')
-rw-r--r--RSSDP/SsdpCommunicationsServer.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/RSSDP/SsdpCommunicationsServer.cs b/RSSDP/SsdpCommunicationsServer.cs
index 92c9c83c0..da357546d 100644
--- a/RSSDP/SsdpCommunicationsServer.cs
+++ b/RSSDP/SsdpCommunicationsServer.cs
@@ -117,7 +117,7 @@ namespace Rssdp.Infrastructure
{
try
{
- _BroadcastListenSockets = ListenForBroadcastsAsync();
+ _BroadcastListenSockets = ListenForBroadcasts();
}
catch (SocketException ex)
{
@@ -333,7 +333,7 @@ namespace Rssdp.Infrastructure
return Task.CompletedTask;
}
- private List<ISocket> ListenForBroadcastsAsync()
+ private List<ISocket> ListenForBroadcasts()
{
var sockets = new List<ISocket>();
if (_enableMultiSocketBinding)
@@ -352,7 +352,7 @@ namespace Rssdp.Infrastructure
}
catch (Exception ex)
{
- _logger.LogError(ex, "Error in ListenForBroadcastsAsync. IPAddress: {0}", address);
+ _logger.LogError(ex, "Error in ListenForBroadcasts. IPAddress: {0}", address);
}
}
}