aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications/Local/LocalLoginService.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2009-01-05 16:30:35 +0000
committerJustin Clarke Casey2009-01-05 16:30:35 +0000
commit0b8d22ab544910a2b9b89b4bee2926a90b0da63f (patch)
treeb409ffaa85bfc48a369669854a1ff4493cc8829f /OpenSim/Region/Communications/Local/LocalLoginService.cs
parentchange the drop order to see if this affects unit test fails (diff)
downloadopensim-SC_OLD-0b8d22ab544910a2b9b89b4bee2926a90b0da63f.zip
opensim-SC_OLD-0b8d22ab544910a2b9b89b4bee2926a90b0da63f.tar.gz
opensim-SC_OLD-0b8d22ab544910a2b9b89b4bee2926a90b0da63f.tar.bz2
opensim-SC_OLD-0b8d22ab544910a2b9b89b4bee2926a90b0da63f.tar.xz
* Check in login service tests beachhead
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Communications/Local/LocalLoginService.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Communications/Local/LocalLoginService.cs b/OpenSim/Region/Communications/Local/LocalLoginService.cs
index e139501..8aa88f7 100644
--- a/OpenSim/Region/Communications/Local/LocalLoginService.cs
+++ b/OpenSim/Region/Communications/Local/LocalLoginService.cs
@@ -219,7 +219,7 @@ namespace OpenSim.Region.Communications.Local
219 219
220 if ((regionInfo != null) && (PrepareLoginToRegion(regionInfo, theUser, response))) 220 if ((regionInfo != null) && (PrepareLoginToRegion(regionInfo, theUser, response)))
221 { 221 {
222 return true; 222 return true;
223 } 223 }
224 224
225 // StartLocation not available, send him to a nearby region instead 225 // StartLocation not available, send him to a nearby region instead
@@ -303,11 +303,9 @@ namespace OpenSim.Region.Communications.Local
303 303
304 string seedcap = "http://"; 304 string seedcap = "http://";
305 305
306
307 if (serversInfo.HttpUsesSSL) 306 if (serversInfo.HttpUsesSSL)
308 { 307 {
309 seedcap = "https://" + serversInfo.HttpSSLCN + ":" + serversInfo.httpSSLPort + "/CAPS/" + capsPath + "0000/"; 308 seedcap = "https://" + serversInfo.HttpSSLCN + ":" + serversInfo.httpSSLPort + "/CAPS/" + capsPath + "0000/";
310
311 } 309 }
312 else 310 else
313 { 311 {
@@ -320,9 +318,11 @@ namespace OpenSim.Region.Communications.Local
320 m_log.InfoFormat( 318 m_log.InfoFormat(
321 "[LOGIN]: Telling {0} @ {1},{2} ({3}) to prepare for client connection", 319 "[LOGIN]: Telling {0} @ {1},{2} ({3}) to prepare for client connection",
322 regionInfo.RegionName, response.RegionX, response.RegionY, regionInfo.ServerURI); 320 regionInfo.RegionName, response.RegionX, response.RegionY, regionInfo.ServerURI);
321
323 // Update agent with target sim 322 // Update agent with target sim
324 user.CurrentAgent.Region = regionInfo.RegionID; 323 user.CurrentAgent.Region = regionInfo.RegionID;
325 user.CurrentAgent.Handle = regionInfo.RegionHandle; 324 user.CurrentAgent.Handle = regionInfo.RegionHandle;
325
326 // Prepare notification 326 // Prepare notification
327 Login loginParams = new Login(); 327 Login loginParams = new Login();
328 loginParams.Session = user.CurrentAgent.SessionID; 328 loginParams.Session = user.CurrentAgent.SessionID;