aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2012-07-12 23:43:02 +0100
committerJustin Clark-Casey (justincc)2012-07-12 23:43:02 +0100
commitdda999a22c5f36d1d413f2f5f29ce8782af85b0b (patch)
tree368c4981e34b7a5ff24b1ca302487572a7a5e1c6 /OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs
parentRemove IClientAPI.GetClientEP() in favour of existing identical IClientAPI.Re... (diff)
downloadopensim-SC_OLD-dda999a22c5f36d1d413f2f5f29ce8782af85b0b.zip
opensim-SC_OLD-dda999a22c5f36d1d413f2f5f29ce8782af85b0b.tar.gz
opensim-SC_OLD-dda999a22c5f36d1d413f2f5f29ce8782af85b0b.tar.bz2
opensim-SC_OLD-dda999a22c5f36d1d413f2f5f29ce8782af85b0b.tar.xz
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.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs11
1 files changed, 1 insertions, 10 deletions
diff --git a/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs b/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs
index 363a1b8..5043208 100644
--- a/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs
+++ b/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs
@@ -44,7 +44,7 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server
44{ 44{
45 public delegate void OnIRCClientReadyDelegate(IRCClientView cv); 45 public delegate void OnIRCClientReadyDelegate(IRCClientView cv);
46 46
47 public class IRCClientView : IClientAPI, IClientCore, IClientIPEndpoint 47 public class IRCClientView : IClientAPI, IClientCore
48 { 48 {
49 public event OnIRCClientReadyDelegate OnIRCReady; 49 public event OnIRCClientReadyDelegate OnIRCReady;
50 50
@@ -1628,15 +1628,6 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server
1628 1628
1629 #endregion 1629 #endregion
1630 1630
1631 #region Implementation of IClientIPEndpoint
1632
1633 public IPAddress EndPoint
1634 {
1635 get { return ((IPEndPoint) m_client.Client.RemoteEndPoint).Address; }
1636 }
1637
1638 #endregion
1639
1640 public void SendRebakeAvatarTextures(UUID textureID) 1631 public void SendRebakeAvatarTextures(UUID textureID)
1641 { 1632 {
1642 } 1633 }