updated comment

This commit is contained in:
BaronGreenback 2021-04-26 19:56:15 +01:00
parent f30bbef781
commit 78e97dbaa9

View file

@ -1203,7 +1203,8 @@ namespace Emby.Server.Implementations
/// <inheritdoc/> /// <inheritdoc/>
public string GetLoopbackHttpApiUrl() public string GetLoopbackHttpApiUrl()
{ {
// Passing an external address cause GetBindInterface to return an externally accessible interface (if possible). // Passing an external address cause GetBindInterface to return the externally facing interface on a multi-adapter system.
// LocalNetworkSubnets and LocalNetworkAddresses are used in conjunction with the ip address to help select the best interface.
return GetLocalApiUrl(NetManager.GetBindInterface("8.8.8.8", out var _), Uri.UriSchemeHttp, HttpPort); return GetLocalApiUrl(NetManager.GetBindInterface("8.8.8.8", out var _), Uri.UriSchemeHttp, HttpPort);
} }