Merge pull request #827 from Rhefew/feature/ip-connection-limit
feat(plugins): implement customizable maximum concurrent connections (cherry picked from commit 0e30df9ae22a265c3486dea1eba259567631eb87)
This commit is contained in:
16
src/GameLogic/IHasIpAddress.cs
Normal file
16
src/GameLogic/IHasIpAddress.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
// <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; }
|
||||
}
|
||||
Reference in New Issue
Block a user