You've already forked lidgren-network-gen3
mirror of
https://github.com/lidgren/lidgren-network-gen3.git
synced 2026-05-17 07:36:32 +09:00
Changed all Endpoint to EndPoint for consistency
This commit is contained in:
@@ -77,10 +77,10 @@ namespace Lidgren.Network
|
||||
/// <summary>
|
||||
/// Connect to a remote server
|
||||
/// </summary>
|
||||
/// <param name="remoteEndpoint">The remote endpoint to connect to</param>
|
||||
/// <param name="remoteEndPoint">The remote endpoint to connect to</param>
|
||||
/// <param name="hailMessage">The hail message to pass</param>
|
||||
/// <returns>server connection, or null if already connected</returns>
|
||||
public override NetConnection Connect(IPEndPoint remoteEndpoint, NetOutgoingMessage hailMessage)
|
||||
public override NetConnection Connect(IPEndPoint remoteEndPoint, NetOutgoingMessage hailMessage)
|
||||
{
|
||||
lock (m_connections)
|
||||
{
|
||||
@@ -90,7 +90,7 @@ namespace Lidgren.Network
|
||||
return null;
|
||||
}
|
||||
}
|
||||
return base.Connect(remoteEndpoint, hailMessage);
|
||||
return base.Connect(remoteEndPoint, hailMessage);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user