diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-12-28 22:39:38 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-12-28 22:39:38 -0500 |
| commit | b46ef16ba838dafbd79f6e9ffbea37afa2104b0b (patch) | |
| tree | 053810f8bc92acf697b7c4de7082781fc6b7728d /MediaBrowser.Controller/IServerApplicationHost.cs | |
| parent | 971808f38faaa019c467b6273e2478d5cc562256 (diff) | |
update local address detection
Diffstat (limited to 'MediaBrowser.Controller/IServerApplicationHost.cs')
| -rw-r--r-- | MediaBrowser.Controller/IServerApplicationHost.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/IServerApplicationHost.cs b/MediaBrowser.Controller/IServerApplicationHost.cs index 1b842a5f6..fb843d191 100644 --- a/MediaBrowser.Controller/IServerApplicationHost.cs +++ b/MediaBrowser.Controller/IServerApplicationHost.cs @@ -1,6 +1,8 @@ using MediaBrowser.Common; using MediaBrowser.Model.System; using System; +using System.Collections.Generic; +using System.Net; namespace MediaBrowser.Controller { @@ -63,7 +65,7 @@ namespace MediaBrowser.Controller /// Gets the local ip address. /// </summary> /// <value>The local ip address.</value> - string LocalIpAddress { get; } + List<IPAddress> LocalIpAddresses { get; } /// <summary> /// Gets the local API URL. |
