aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Server/Base/ServicesServerBase.cs
diff options
context:
space:
mode:
authorMelanie Thielker2010-06-08 22:03:08 +0200
committerMelanie2010-06-08 22:05:06 +0100
commita791689ceb2b502929fa526d595465d36a22ac07 (patch)
treeb71d32a309929a74292a51183efc95355d24187c /OpenSim/Server/Base/ServicesServerBase.cs
parentAdd a migration to adjust types in the WL table. The new connector likes that (diff)
downloadopensim-SC_OLD-a791689ceb2b502929fa526d595465d36a22ac07.zip
opensim-SC_OLD-a791689ceb2b502929fa526d595465d36a22ac07.tar.gz
opensim-SC_OLD-a791689ceb2b502929fa526d595465d36a22ac07.tar.bz2
opensim-SC_OLD-a791689ceb2b502929fa526d595465d36a22ac07.tar.xz
Make the text mode remote console really work. It can now be used to send
multi-word commands with proper quoting, handles arguments with spaces and allows interactive use, e.g. user creation.
Diffstat (limited to 'OpenSim/Server/Base/ServicesServerBase.cs')
-rw-r--r--OpenSim/Server/Base/ServicesServerBase.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Server/Base/ServicesServerBase.cs b/OpenSim/Server/Base/ServicesServerBase.cs
index 63ba673..a5bebb8 100644
--- a/OpenSim/Server/Base/ServicesServerBase.cs
+++ b/OpenSim/Server/Base/ServicesServerBase.cs
@@ -236,6 +236,11 @@ namespace OpenSim.Server.Base
236 Initialise(); 236 Initialise();
237 } 237 }
238 238
239 public bool Running
240 {
241 get { return m_Running; }
242 }
243
239 public virtual int Run() 244 public virtual int Run()
240 { 245 {
241 while (m_Running) 246 while (m_Running)