diff options
| author | Cody Robibero <cody@robibe.ro> | 2022-03-10 14:19:08 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-10 14:19:08 -0700 |
| commit | a5ffde0e9c120c9addc5a4953760bece919ff677 (patch) | |
| tree | 3226eb8a7354545b39efbd7c5559d674798e5881 /MediaBrowser.Model/Net/ISocketFactory.cs | |
| parent | 96de01ce016e26cd7ee9a3f128613458fa8f180e (diff) | |
| parent | 470d175f32aaae980cd301e6e5fc4b5a1630576d (diff) | |
Merge pull request #7432 from Bond-009/socketfactory
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); } } |
