diff options
| author | Shadowghost <Ghost_of_Stone@web.de> | 2022-10-15 20:57:02 +0200 |
|---|---|---|
| committer | Shadowghost <Ghost_of_Stone@web.de> | 2022-10-16 10:22:11 +0200 |
| commit | 26d79a5ce3639700131d0359c60c096cd0fbb093 (patch) | |
| tree | f470d2133d296432cb293c15d53619833f0e3791 /MediaBrowser.Common | |
| parent | 87d0158a4af9d8c982736cbae77019fa6dd03126 (diff) | |
Properly name some bind address functions, cleanup logging
Diffstat (limited to 'MediaBrowser.Common')
| -rw-r--r-- | MediaBrowser.Common/Net/INetworkManager.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/MediaBrowser.Common/Net/INetworkManager.cs b/MediaBrowser.Common/Net/INetworkManager.cs index d462e954a..f0f16af78 100644 --- a/MediaBrowser.Common/Net/INetworkManager.cs +++ b/MediaBrowser.Common/Net/INetworkManager.cs @@ -75,17 +75,17 @@ namespace MediaBrowser.Common.Net /// <summary> /// Retrieves the bind address to use in system URLs. (Server Discovery, PlayTo, LiveTV, SystemInfo) /// If no bind addresses are specified, an internal interface address is selected. - /// (See <see cref="GetBindInterface(IPAddress, out int?)"/>. + /// (See <see cref="GetBindAddress(IPAddress, out int?)"/>. /// </summary> /// <param name="source">IP address of the request.</param> /// <param name="port">Optional port returned, if it's part of an override.</param> /// <returns>IP address to use, or loopback address if all else fails.</returns> - string GetBindInterface(IPAddress source, out int? port); + string GetBindAddress(IPAddress source, out int? port); /// <summary> /// Retrieves the bind address to use in system URLs. (Server Discovery, PlayTo, LiveTV, SystemInfo) /// If no bind addresses are specified, an internal interface address is selected. - /// (See <see cref="GetBindInterface(IPAddress, out int?)"/>. + /// (See <see cref="GetBindAddress(IPAddress, out int?)"/>. /// </summary> /// <param name="source">Source of the request.</param> /// <param name="port">Optional port returned, if it's part of an override.</param> |
