aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces/ILoginService.cs
diff options
context:
space:
mode:
authorMelanie Thielker2010-05-05 23:06:36 +0200
committerMelanie Thielker2010-05-05 23:06:36 +0200
commit65775b87e5000a07634240ab8ce39aaecd30d1e6 (patch)
tree3f383c556608cab4d21e5505d459ce32e30aea89 /OpenSim/Services/Interfaces/ILoginService.cs
parentRemoved a test for a "can't happen" case. ParentGroup is never null anymore. (diff)
downloadopensim-SC_OLD-65775b87e5000a07634240ab8ce39aaecd30d1e6.zip
opensim-SC_OLD-65775b87e5000a07634240ab8ce39aaecd30d1e6.tar.gz
opensim-SC_OLD-65775b87e5000a07634240ab8ce39aaecd30d1e6.tar.bz2
opensim-SC_OLD-65775b87e5000a07634240ab8ce39aaecd30d1e6.tar.xz
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.
Diffstat (limited to '')
-rw-r--r--OpenSim/Services/Interfaces/ILoginService.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenSim/Services/Interfaces/ILoginService.cs b/OpenSim/Services/Interfaces/ILoginService.cs
index 49efbe2..513ab4a 100644
--- a/OpenSim/Services/Interfaces/ILoginService.cs
+++ b/OpenSim/Services/Interfaces/ILoginService.cs
@@ -48,6 +48,7 @@ namespace OpenSim.Services.Interfaces
48 public interface ILoginService 48 public interface ILoginService
49 { 49 {
50 LoginResponse Login(string firstName, string lastName, string passwd, string startLocation, UUID scopeID, IPEndPoint clientIP); 50 LoginResponse Login(string firstName, string lastName, string passwd, string startLocation, UUID scopeID, IPEndPoint clientIP);
51 Hashtable SetLevel(string firstName, string lastName, string passwd, int level, IPEndPoint clientIP);
51 } 52 }
52 53
53 54