diff options
Diffstat (limited to 'OpenSim/Grid/GridServer.Modules/GridMessagingModule.cs')
-rw-r--r-- | OpenSim/Grid/GridServer.Modules/GridMessagingModule.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Grid/GridServer.Modules/GridMessagingModule.cs b/OpenSim/Grid/GridServer.Modules/GridMessagingModule.cs index 2f08756..eaf5b86 100644 --- a/OpenSim/Grid/GridServer.Modules/GridMessagingModule.cs +++ b/OpenSim/Grid/GridServer.Modules/GridMessagingModule.cs | |||
@@ -28,6 +28,7 @@ | |||
28 | using System; | 28 | using System; |
29 | using System.Collections; | 29 | using System.Collections; |
30 | using System.Collections.Generic; | 30 | using System.Collections.Generic; |
31 | using System.Net; | ||
31 | using System.Reflection; | 32 | using System.Reflection; |
32 | using System.Text; | 33 | using System.Text; |
33 | using Nwc.XmlRpc; | 34 | using Nwc.XmlRpc; |
@@ -98,7 +99,7 @@ namespace OpenSim.Grid.GridServer.Modules | |||
98 | } | 99 | } |
99 | } | 100 | } |
100 | 101 | ||
101 | public XmlRpcResponse XmlRPCRegisterMessageServer(XmlRpcRequest request) | 102 | public XmlRpcResponse XmlRPCRegisterMessageServer(XmlRpcRequest request, IPEndPoint remoteClient) |
102 | { | 103 | { |
103 | XmlRpcResponse response = new XmlRpcResponse(); | 104 | XmlRpcResponse response = new XmlRpcResponse(); |
104 | Hashtable requestData = (Hashtable)request.Params[0]; | 105 | Hashtable requestData = (Hashtable)request.Params[0]; |
@@ -120,7 +121,7 @@ namespace OpenSim.Grid.GridServer.Modules | |||
120 | return response; | 121 | return response; |
121 | } | 122 | } |
122 | 123 | ||
123 | public XmlRpcResponse XmlRPCDeRegisterMessageServer(XmlRpcRequest request) | 124 | public XmlRpcResponse XmlRPCDeRegisterMessageServer(XmlRpcRequest request, IPEndPoint remoteClient) |
124 | { | 125 | { |
125 | XmlRpcResponse response = new XmlRpcResponse(); | 126 | XmlRpcResponse response = new XmlRpcResponse(); |
126 | Hashtable requestData = (Hashtable)request.Params[0]; | 127 | Hashtable requestData = (Hashtable)request.Params[0]; |