diff options
-rw-r--r-- | OpenSim/Region/CoreModules/Scripting/XMLRPC/XMLRPCModule.cs | 5 | ||||
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IXMLRPC.cs | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Region/CoreModules/Scripting/XMLRPC/XMLRPCModule.cs b/OpenSim/Region/CoreModules/Scripting/XMLRPC/XMLRPCModule.cs index d917adc..c52848d 100644 --- a/OpenSim/Region/CoreModules/Scripting/XMLRPC/XMLRPCModule.cs +++ b/OpenSim/Region/CoreModules/Scripting/XMLRPC/XMLRPCModule.cs | |||
@@ -151,6 +151,11 @@ namespace OpenSim.Region.CoreModules.Scripting.XMLRPC | |||
151 | get { return true; } | 151 | get { return true; } |
152 | } | 152 | } |
153 | 153 | ||
154 | public int Port | ||
155 | { | ||
156 | get { return m_remoteDataPort; } | ||
157 | } | ||
158 | |||
154 | #endregion | 159 | #endregion |
155 | 160 | ||
156 | #region IXMLRPC Members | 161 | #region IXMLRPC Members |
diff --git a/OpenSim/Region/Framework/Interfaces/IXMLRPC.cs b/OpenSim/Region/Framework/Interfaces/IXMLRPC.cs index d6f9819..f8d0bc8 100644 --- a/OpenSim/Region/Framework/Interfaces/IXMLRPC.cs +++ b/OpenSim/Region/Framework/Interfaces/IXMLRPC.cs | |||
@@ -59,5 +59,6 @@ namespace OpenSim.Region.Framework.Interfaces | |||
59 | IServiceRequest GetNextCompletedSRDRequest(); | 59 | IServiceRequest GetNextCompletedSRDRequest(); |
60 | void RemoveCompletedSRDRequest(UUID id); | 60 | void RemoveCompletedSRDRequest(UUID id); |
61 | void CancelSRDRequests(UUID itemID); | 61 | void CancelSRDRequests(UUID itemID); |
62 | int Port { get; } | ||
62 | } | 63 | } |
63 | } | 64 | } |