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.
This commit is contained in:
Melanie Thielker
2010-06-08 22:03:08 +02:00
committed by Melanie
parent a246cbce8d
commit a791689ceb
3 changed files with 62 additions and 27 deletions

View File

@@ -236,6 +236,11 @@ namespace OpenSim.Server.Base
Initialise();
}
public bool Running
{
get { return m_Running; }
}
public virtual int Run()
{
while (m_Running)