aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs
diff options
context:
space:
mode:
authorMic Bowman2011-10-04 15:43:41 -0700
committerMic Bowman2011-10-04 15:43:41 -0700
commitb229a72a5fb929d4886117f39ed6bd17a6d56aef (patch)
tree061be413b765a6e5e0c3fe6ba7b28cd82c1b923f /OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs
parentMerge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff)
downloadopensim-SC_OLD-b229a72a5fb929d4886117f39ed6bd17a6d56aef.zip
opensim-SC_OLD-b229a72a5fb929d4886117f39ed6bd17a6d56aef.tar.gz
opensim-SC_OLD-b229a72a5fb929d4886117f39ed6bd17a6d56aef.tar.bz2
opensim-SC_OLD-b229a72a5fb929d4886117f39ed6bd17a6d56aef.tar.xz
Turn off keepalives when commands are specified
Diffstat (limited to '')
-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 08f3dc7..96725dd 100644
--- a/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs
+++ b/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs
@@ -170,7 +170,7 @@ namespace OpenSim.ApplicationPlugins.RemoteController
170 { 170 {
171 foreach (string enabledMethod in enabledMethods.Split('|')) 171 foreach (string enabledMethod in enabledMethods.Split('|'))
172 { 172 {
173 m_httpServer.AddXmlRPCHandler(enabledMethod, availableMethods[enabledMethod]); 173 m_httpServer.AddXmlRPCHandler(enabledMethod, availableMethods[enabledMethod], false);
174 } 174 }
175 } 175 }
176 } 176 }