aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Net/ISocketFactory.cs
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2022-03-08 22:20:43 +0100
committerBond_009 <bond.009@outlook.com>2022-03-08 22:20:43 +0100
commit1d018c557599a544ad2f8193ce7cc0a6a6f1260a (patch)
treecb493215dd8bb83e0ecf022224e6f8f6342fa5d1 /MediaBrowser.Model/Net/ISocketFactory.cs
parent03f1eff21abf75d88d15df05b6a841e48943c7ef (diff)
SocketFactory: Remove redundant code
ExclusiveAddressUse should be false by default afaik
Diffstat (limited to 'MediaBrowser.Model/Net/ISocketFactory.cs')
-rw-r--r--MediaBrowser.Model/Net/ISocketFactory.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Net/ISocketFactory.cs b/MediaBrowser.Model/Net/ISocketFactory.cs
index 1527ef595..a2835b711 100644
--- a/MediaBrowser.Model/Net/ISocketFactory.cs
+++ b/MediaBrowser.Model/Net/ISocketFactory.cs
@@ -26,6 +26,6 @@ namespace MediaBrowser.Model.Net
/// <param name="multicastTimeToLive">The multicast time to live value. Actually a maximum number of network hops for UDP packets.</param>
/// <param name="localPort">The local port to bind to.</param>
/// <returns>A <see cref="ISocket"/> implementation.</returns>
- ISocket CreateUdpMulticastSocket(string ipAddress, int multicastTimeToLive, int localPort);
+ ISocket CreateUdpMulticastSocket(IPAddress ipAddress, int multicastTimeToLive, int localPort);
}
}