diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-10-25 21:57:58 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-10-25 21:57:58 -0400 |
| commit | 675b6431151438d217b904fb17084832e95d7656 (patch) | |
| tree | d48dd740efab9ee7d1be7fa71ae0187f87899045 /MediaBrowser.Controller/IServerApplicationHost.cs | |
| parent | 23d7afdf68b088c78abbe68e9652a2c6bc18f71c (diff) | |
change controller project targeting
Diffstat (limited to 'MediaBrowser.Controller/IServerApplicationHost.cs')
| -rw-r--r-- | MediaBrowser.Controller/IServerApplicationHost.cs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/MediaBrowser.Controller/IServerApplicationHost.cs b/MediaBrowser.Controller/IServerApplicationHost.cs index d6744e804..2fd96577a 100644 --- a/MediaBrowser.Controller/IServerApplicationHost.cs +++ b/MediaBrowser.Controller/IServerApplicationHost.cs @@ -4,6 +4,7 @@ using System; using System.Collections.Generic; using System.Net; using System.Threading.Tasks; +using MediaBrowser.Model.Net; namespace MediaBrowser.Controller { @@ -66,7 +67,7 @@ namespace MediaBrowser.Controller /// Gets the local ip address. /// </summary> /// <value>The local ip address.</value> - Task<List<IPAddress>> GetLocalIpAddresses(); + Task<List<IpAddressInfo>> GetLocalIpAddresses(); /// <summary> /// Gets the local API URL. @@ -84,9 +85,7 @@ namespace MediaBrowser.Controller /// <summary> /// Gets the local API URL. /// </summary> - /// <param name="ipAddress">The ip address.</param> - /// <returns>System.String.</returns> - string GetLocalApiUrl(IPAddress ipAddress); + string GetLocalApiUrl(string ipAddress, bool isIpv6); void LaunchUrl(string url); |
