Add a XMLRPC method to remotely set the login level for the LLLoginService.

This requires a special XMLRPC call, which has to supply the credentials of
a god user (User level >= 200). Disabled by default. Also Adds a configuration
option to set the initial permitted login level.
This commit is contained in:
Melanie Thielker
2010-05-05 23:06:36 +02:00
committed by Melanie
parent 7aed89a8d0
commit fe8399d1bf
5 changed files with 93 additions and 0 deletions

View File

@@ -48,6 +48,7 @@ namespace OpenSim.Services.Interfaces
public interface ILoginService
{
LoginResponse Login(string firstName, string lastName, string passwd, string startLocation, UUID scopeID, IPEndPoint clientIP);
Hashtable SetLevel(string firstName, string lastName, string passwd, int level, IPEndPoint clientIP);
}