diff options
| author | Bond_009 <bond.009@outlook.com> | 2022-03-08 22:20:43 +0100 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2022-03-08 22:20:43 +0100 |
| commit | 1d018c557599a544ad2f8193ce7cc0a6a6f1260a (patch) | |
| tree | cb493215dd8bb83e0ecf022224e6f8f6342fa5d1 /MediaBrowser.Model/Net/ISocketFactory.cs | |
| parent | 03f1eff21abf75d88d15df05b6a841e48943c7ef (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.cs | 2 |
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); } } |
