aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/Services
diff options
context:
space:
mode:
authorJustin Clarke Casey2009-04-22 18:15:43 +0000
committerJustin Clarke Casey2009-04-22 18:15:43 +0000
commit2c81e41c8a884ece643f3079349b033d03b6b774 (patch)
treebea7956ef00378f47fa420e82ffb665a137a9630 /OpenSim/Framework/Communications/Services
parentFrom: Alan Webb <alan_webb@us.ibm.com> (diff)
downloadopensim-SC_OLD-2c81e41c8a884ece643f3079349b033d03b6b774.zip
opensim-SC_OLD-2c81e41c8a884ece643f3079349b033d03b6b774.tar.gz
opensim-SC_OLD-2c81e41c8a884ece643f3079349b033d03b6b774.tar.bz2
opensim-SC_OLD-2c81e41c8a884ece643f3079349b033d03b6b774.tar.xz
* Fission OGS1UserServices into user service and OGS1 user data plugin components
* Make OGS1UserServices inherit from UserManagerBase * This allows grid mode regions to use the same user data plugin infrastructure as grid servers and standalone OpenSims
Diffstat (limited to 'OpenSim/Framework/Communications/Services')
-rw-r--r--OpenSim/Framework/Communications/Services/LoginService.cs13
1 files changed, 7 insertions, 6 deletions
diff --git a/OpenSim/Framework/Communications/Services/LoginService.cs b/OpenSim/Framework/Communications/Services/LoginService.cs
index 72a4281..1b71367 100644
--- a/OpenSim/Framework/Communications/Services/LoginService.cs
+++ b/OpenSim/Framework/Communications/Services/LoginService.cs
@@ -1147,14 +1147,15 @@ namespace OpenSim.Framework.Communications.Services
1147 if (m_userManager.VerifySession(guess_aid, guess_sid)) 1147 if (m_userManager.VerifySession(guess_aid, guess_sid))
1148 { 1148 {
1149 authed = "TRUE"; 1149 authed = "TRUE";
1150 m_log.InfoFormat("[UserManager]: CheckAuthSession TRUE for user {0}", guess_aid);
1151 }
1152 else
1153 {
1154 m_log.InfoFormat("[UserManager]: CheckAuthSession FALSE");
1155 return Util.CreateUnknownUserErrorResponse();
1150 } 1156 }
1151 m_log.InfoFormat("[UserManager]: CheckAuthSession TRUE for user {0}", guess_aid);
1152 }
1153 else
1154 {
1155 m_log.InfoFormat("[UserManager]: CheckAuthSession FALSE");
1156 return Util.CreateUnknownUserErrorResponse();
1157 } 1157 }
1158
1158 Hashtable responseData = new Hashtable(); 1159 Hashtable responseData = new Hashtable();
1159 responseData["auth_session"] = authed; 1160 responseData["auth_session"] = authed;
1160 response.Value = responseData; 1161 response.Value = responseData;