feat(plugins): implement customizable maximum concurrent connections (cherry picked from commit 0e30df9ae22a265c3486dea1eba259567631eb87)
17 lines
458 B
C#
17 lines
458 B
C#
// <copyright file="IHasIpAddress.cs" company="MUnique">
|
|
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
|
|
// </copyright>
|
|
|
|
namespace MUnique.OpenMU.GameLogic;
|
|
|
|
/// <summary>
|
|
/// Interface for objects that expose a remote IP address.
|
|
/// </summary>
|
|
public interface IHasIpAddress
|
|
{
|
|
/// <summary>
|
|
/// Gets the IP address of the remote connection.
|
|
/// </summary>
|
|
string? IpAddress { get; }
|
|
}
|