aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/ApplicationPlugins
diff options
context:
space:
mode:
authorMelanie2011-10-12 01:29:47 +0100
committerMelanie2011-10-12 01:29:47 +0100
commit30b2fc6aeaffda2bbdc4a5ce76011b9e9e807b2f (patch)
tree0349c5e59567d720eae56e9ab938c33dbb61891b /OpenSim/ApplicationPlugins
parentMerge commit '8a216dc1ccdc336a22958cd476de034d065cf676' into bigmerge (diff)
parentTurn off keepalives when commands are specified (diff)
downloadopensim-SC_OLD-30b2fc6aeaffda2bbdc4a5ce76011b9e9e807b2f.zip
opensim-SC_OLD-30b2fc6aeaffda2bbdc4a5ce76011b9e9e807b2f.tar.gz
opensim-SC_OLD-30b2fc6aeaffda2bbdc4a5ce76011b9e9e807b2f.tar.bz2
opensim-SC_OLD-30b2fc6aeaffda2bbdc4a5ce76011b9e9e807b2f.tar.xz
Merge commit 'b229a72a5fb929d4886117f39ed6bd17a6d56aef' into bigmerge
Diffstat (limited to 'OpenSim/ApplicationPlugins')
-rw-r--r--OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs b/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs
index 535712e..94ab4da 100644
--- a/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs
+++ b/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs
@@ -171,7 +171,7 @@ namespace OpenSim.ApplicationPlugins.RemoteController
171 { 171 {
172 foreach (string enabledMethod in enabledMethods.Split('|')) 172 foreach (string enabledMethod in enabledMethods.Split('|'))
173 { 173 {
174 m_httpServer.AddXmlRPCHandler(enabledMethod, availableMethods[enabledMethod]); 174 m_httpServer.AddXmlRPCHandler(enabledMethod, availableMethods[enabledMethod], false);
175 } 175 }
176 } 176 }
177 } 177 }