[Modify] Polish it

This commit is contained in:
sta 2016-05-08 16:41:36 +09:00
parent 9f8a95980f
commit 322f3932da

View File

@ -1283,10 +1283,13 @@ namespace WebSocketSharp
/// <summary> /// <summary>
/// Determines whether the specified <see cref="System.Net.IPAddress"/> represents /// Determines whether the specified <see cref="System.Net.IPAddress"/> represents
/// the local IP address. /// a local IP address.
/// </summary> /// </summary>
/// <remarks>
/// This local means NOT REMOTE for the current host.
/// </remarks>
/// <returns> /// <returns>
/// <c>true</c> if <paramref name="address"/> represents the local IP address; /// <c>true</c> if <paramref name="address"/> represents a local IP address;
/// otherwise, <c>false</c>. /// otherwise, <c>false</c>.
/// </returns> /// </returns>
/// <param name="address"> /// <param name="address">
@ -1313,9 +1316,10 @@ namespace WebSocketSharp
var host = System.Net.Dns.GetHostName (); var host = System.Net.Dns.GetHostName ();
var addrs = System.Net.Dns.GetHostAddresses (host); var addrs = System.Net.Dns.GetHostAddresses (host);
foreach (var addr in addrs) foreach (var addr in addrs) {
if (address.Equals (addr)) if (address.Equals (addr))
return true; return true;
}
return false; return false;
} }