Remove IClientIPEndpoint client interface for now.
This may well come back in the future when this subinterface is actually used but it currently isn't and I feel the name was poor. Everything uses IClientAPI.RemoveEndPoint which also returned the full endpoint rather than just the ip address.0.7.4.1
parent
3b3d9967b1
commit
dda999a22c
|
@ -59,7 +59,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
/// Handles new client connections
|
/// Handles new client connections
|
||||||
/// Constructor takes a single Packet and authenticates everything
|
/// Constructor takes a single Packet and authenticates everything
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class LLClientView : IClientAPI, IClientCore, IClientIM, IClientChat, IClientInventory, IClientIPEndpoint, IStatsCollector
|
public class LLClientView : IClientAPI, IClientCore, IClientIM, IClientChat, IClientInventory, IStatsCollector
|
||||||
{
|
{
|
||||||
/// <value>
|
/// <value>
|
||||||
/// Debug packet level. See OpenSim.RegisterConsoleCommands() for more details.
|
/// Debug packet level. See OpenSim.RegisterConsoleCommands() for more details.
|
||||||
|
@ -450,7 +450,6 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
RegisterInterface<IClientIM>(this);
|
RegisterInterface<IClientIM>(this);
|
||||||
RegisterInterface<IClientInventory>(this);
|
RegisterInterface<IClientInventory>(this);
|
||||||
RegisterInterface<IClientChat>(this);
|
RegisterInterface<IClientChat>(this);
|
||||||
RegisterInterface<IClientIPEndpoint>(this);
|
|
||||||
|
|
||||||
m_scene = scene;
|
m_scene = scene;
|
||||||
m_entityUpdates = new PriorityQueue(m_scene.Entities.Count);
|
m_entityUpdates = new PriorityQueue(m_scene.Entities.Count);
|
||||||
|
@ -12114,24 +12113,6 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
return numPackets;
|
return numPackets;
|
||||||
}
|
}
|
||||||
|
|
||||||
#region IClientIPEndpoint Members
|
|
||||||
|
|
||||||
public IPAddress EndPoint
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
if (m_userEndPoint is IPEndPoint)
|
|
||||||
{
|
|
||||||
IPEndPoint ep = (IPEndPoint)m_userEndPoint;
|
|
||||||
|
|
||||||
return ep.Address;
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#endregion
|
|
||||||
|
|
||||||
public void SendRebakeAvatarTextures(UUID textureID)
|
public void SendRebakeAvatarTextures(UUID textureID)
|
||||||
{
|
{
|
||||||
RebakeAvatarTexturesPacket pack =
|
RebakeAvatarTexturesPacket pack =
|
||||||
|
|
|
@ -44,7 +44,7 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server
|
||||||
{
|
{
|
||||||
public delegate void OnIRCClientReadyDelegate(IRCClientView cv);
|
public delegate void OnIRCClientReadyDelegate(IRCClientView cv);
|
||||||
|
|
||||||
public class IRCClientView : IClientAPI, IClientCore, IClientIPEndpoint
|
public class IRCClientView : IClientAPI, IClientCore
|
||||||
{
|
{
|
||||||
public event OnIRCClientReadyDelegate OnIRCReady;
|
public event OnIRCClientReadyDelegate OnIRCReady;
|
||||||
|
|
||||||
|
@ -1628,15 +1628,6 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Implementation of IClientIPEndpoint
|
|
||||||
|
|
||||||
public IPAddress EndPoint
|
|
||||||
{
|
|
||||||
get { return ((IPEndPoint) m_client.Client.RemoteEndPoint).Address; }
|
|
||||||
}
|
|
||||||
|
|
||||||
#endregion
|
|
||||||
|
|
||||||
public void SendRebakeAvatarTextures(UUID textureID)
|
public void SendRebakeAvatarTextures(UUID textureID)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue