SocketFactory: Remove redundant code

ExclusiveAddressUse should be false by default afaik
This commit is contained in:
Bond_009
2022-03-08 22:20:43 +01:00
parent 03f1eff21a
commit 1d018c5575
3 changed files with 4 additions and 20 deletions

View File

@@ -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);
}
}