aboutsummaryrefslogtreecommitdiff
path: root/RSSDP/SsdpDevicePublisher.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-14 14:32:43 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-14 14:32:43 -0500
commit180ab02edc62ad6e73ece198bd2f9887468eb159 (patch)
tree76bb3f26c72115e75250d73e23a51cdab931e7ba /RSSDP/SsdpDevicePublisher.cs
parentc2e9df41dc288c3a57e98cb8d89c6c49ecb59814 (diff)
update msearch
Diffstat (limited to 'RSSDP/SsdpDevicePublisher.cs')
-rw-r--r--RSSDP/SsdpDevicePublisher.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/RSSDP/SsdpDevicePublisher.cs b/RSSDP/SsdpDevicePublisher.cs
index 56f27b3a2..1c17c7837 100644
--- a/RSSDP/SsdpDevicePublisher.cs
+++ b/RSSDP/SsdpDevicePublisher.cs
@@ -26,8 +26,8 @@ namespace Rssdp
/// <para>Uses the default <see cref="ISsdpCommunicationsServer"/> implementation and network settings for Windows and the SSDP specification.</para>
/// </remarks>
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Reliability", "CA2000:Dispose objects before losing scope", Justification = "No way to do this here, and we don't want to dispose it except in the (rare) case of an exception anyway.")]
- public SsdpDevicePublisher(ISocketFactory socketFactory, ITimerFactory timerFactory, string osName, string osVersion)
- : base(new SsdpCommunicationsServer(socketFactory), timerFactory, osName, osVersion)
+ public SsdpDevicePublisher(ISsdpCommunicationsServer communicationsServer, ITimerFactory timerFactory, string osName, string osVersion)
+ : base(communicationsServer, timerFactory, osName, osVersion)
{
}