diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-09-16 23:04:10 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-09-16 23:04:10 -0400 |
| commit | 6130cb2403662596bba0474494372446d9caa3c3 (patch) | |
| tree | 8068a437340aa7e904965caf7e50053c433623d0 /MediaBrowser.Controller | |
| parent | 5363cb2719752732db17199ce9ed27743f0a80a1 (diff) | |
adjust discovery of local ip addresses
Diffstat (limited to 'MediaBrowser.Controller')
| -rw-r--r-- | MediaBrowser.Controller/IServerApplicationHost.cs | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/IServerApplicationHost.cs b/MediaBrowser.Controller/IServerApplicationHost.cs index a48860b7eb..d1a9b386cc 100644 --- a/MediaBrowser.Controller/IServerApplicationHost.cs +++ b/MediaBrowser.Controller/IServerApplicationHost.cs @@ -1,4 +1,5 @@ -using MediaBrowser.Common; +using System.Collections.Generic; +using MediaBrowser.Common; using MediaBrowser.Model.System; using System; @@ -46,5 +47,11 @@ namespace MediaBrowser.Controller /// </summary> /// <value>The name of the friendly.</value> string FriendlyName { get; } + + /// <summary> + /// Gets the HTTP server ip addresses. + /// </summary> + /// <value>The HTTP server ip addresses.</value> + IEnumerable<string> HttpServerIpAddresses { get; } } } |
