diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-12-04 16:55:02 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-12-04 16:55:02 -0500 |
| commit | 8c8f2aaba5e4bf573efe2730b5450a8c07abe1b3 (patch) | |
| tree | 34ed236696c0400c1d209985fe6450ac8adc8360 /MediaBrowser.Model/Net/ISocketFactory.cs | |
| parent | 598f1cf2bddebbd167ed70470e54a2504ca4c0a7 (diff) | |
first pass at binding to multiple network addresses
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 599292ddf..ac406e7f1 100644 --- a/MediaBrowser.Model/Net/ISocketFactory.cs +++ b/MediaBrowser.Model/Net/ISocketFactory.cs @@ -17,7 +17,7 @@ namespace MediaBrowser.Model.Net /// <summary> /// Createa a new unicast socket using the specified local port number. /// </summary> - IUdpSocket CreateSsdpUdpSocket(int localPort); + IUdpSocket CreateSsdpUdpSocket(IpAddressInfo localIp, int localPort); /// <summary> /// Createa a new multicast socket using the specified multicast IP address, multicast time to live and local port. |
