diff options
Diffstat (limited to 'OpenSim/Framework/Communications/LoginService.cs')
-rw-r--r-- | OpenSim/Framework/Communications/LoginService.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/LoginService.cs b/OpenSim/Framework/Communications/LoginService.cs index 7a39a97..7a657b5 100644 --- a/OpenSim/Framework/Communications/LoginService.cs +++ b/OpenSim/Framework/Communications/LoginService.cs | |||
@@ -47,6 +47,7 @@ namespace OpenSim.Framework.Communications | |||
47 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 47 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
48 | 48 | ||
49 | protected string m_welcomeMessage = "Welcome to OpenSim"; | 49 | protected string m_welcomeMessage = "Welcome to OpenSim"; |
50 | protected int m_minLoginLevel = 0; | ||
50 | protected UserManagerBase m_userManager = null; | 51 | protected UserManagerBase m_userManager = null; |
51 | protected Mutex m_loginMutex = new Mutex(false); | 52 | protected Mutex m_loginMutex = new Mutex(false); |
52 | 53 | ||
@@ -196,6 +197,10 @@ namespace OpenSim.Framework.Communications | |||
196 | 197 | ||
197 | return logResponse.CreateLoginFailedResponse(); | 198 | return logResponse.CreateLoginFailedResponse(); |
198 | } | 199 | } |
200 | else if (userProfile.GodLevel < m_minLoginLevel) | ||
201 | { | ||
202 | return logResponse.CreateLoginBlockedResponse(); | ||
203 | } | ||
199 | else | 204 | else |
200 | { | 205 | { |
201 | // If we already have a session... | 206 | // If we already have a session... |
@@ -363,6 +368,10 @@ namespace OpenSim.Framework.Communications | |||
363 | { | 368 | { |
364 | return logResponse.CreateLoginFailedResponseLLSD(); | 369 | return logResponse.CreateLoginFailedResponseLLSD(); |
365 | } | 370 | } |
371 | else if (userProfile.GodLevel < m_minLoginLevel) | ||
372 | { | ||
373 | return logResponse.CreateLoginBlockedResponseLLSD(); | ||
374 | } | ||
366 | else | 375 | else |
367 | { | 376 | { |
368 | // If we already have a session... | 377 | // If we already have a session... |