adjust discovery of local ip addresses

This commit is contained in:
Luke Pulverenti
2014-09-16 23:04:10 -04:00
parent 5363cb2719
commit 6130cb2403
6 changed files with 107 additions and 42 deletions

View File

@@ -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; }
}
}