//
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
//
namespace MUnique.OpenMU.Network;
using System.Net;
///
/// Resolves the ip address as 127.127.127.127.
/// Usually only used at development time.
///
public class LoopbackIpResolver : CustomIpResolver
{
///
/// Initializes a new instance of the class.
///
public LoopbackIpResolver()
: base(LoopbackAddress)
{
}
///
/// Gets the local address.
///
internal static IPAddress LoopbackAddress { get; } = new IPAddress(0x7F7F7F7F);
}