aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenGridServices/OpenGridServices.UserServer
diff options
context:
space:
mode:
authorAdam Frisby2007-05-30 02:36:48 +0000
committerAdam Frisby2007-05-30 02:36:48 +0000
commitb0de1b93f9ddc7a111d72ea03eae32ff486089a1 (patch)
tree7286e30966ce16fde5d2f03a2612725fec5c85be /OpenGridServices/OpenGridServices.UserServer
parentAnother rebuild of the build files! :O (diff)
downloadopensim-SC_OLD-b0de1b93f9ddc7a111d72ea03eae32ff486089a1.zip
opensim-SC_OLD-b0de1b93f9ddc7a111d72ea03eae32ff486089a1.tar.gz
opensim-SC_OLD-b0de1b93f9ddc7a111d72ea03eae32ff486089a1.tar.bz2
opensim-SC_OLD-b0de1b93f9ddc7a111d72ea03eae32ff486089a1.tar.xz
* Added reconnect support for MySQL Data interfaces if they time out. (Grid/User modes only now, Log todo)
* Begun writing support for supporting the "Start" region login parameter.
Diffstat (limited to 'OpenGridServices/OpenGridServices.UserServer')
-rw-r--r--OpenGridServices/OpenGridServices.UserServer/UserManager.cs17
1 files changed, 15 insertions, 2 deletions
diff --git a/OpenGridServices/OpenGridServices.UserServer/UserManager.cs b/OpenGridServices/OpenGridServices.UserServer/UserManager.cs
index cd80621..21ecc50 100644
--- a/OpenGridServices/OpenGridServices.UserServer/UserManager.cs
+++ b/OpenGridServices/OpenGridServices.UserServer/UserManager.cs
@@ -395,10 +395,23 @@ namespace OpenGridServices.UserServer
395 // If user specified additional start, use that 395 // If user specified additional start, use that
396 if (requestData.ContainsKey("start")) 396 if (requestData.ContainsKey("start"))
397 { 397 {
398 string startLoc = (string)requestData["start"]; 398 string startLoc = ((string)requestData["start"]).Trim();
399 if (!(startLoc == "last" || startLoc == "home")) 399 if (!(startLoc == "last" || startLoc == "home"))
400 { 400 {
401 // Ignore it! Heh. 401 // Format: uri:Ahern&162&213&34
402 try
403 {
404 string[] parts = startLoc.Remove(0, 4).Split('&');
405 string region = parts[0];
406
407 ////////////////////////////////////////////////////
408 //SimProfile SimInfo = new SimProfile();
409 //SimInfo = SimInfo.LoadFromGrid(theUser.currentAgent.currentHandle, _config.GridServerURL, _config.GridSendKey, _config.GridRecvKey);
410 }
411 catch (Exception e)
412 {
413
414 }
402 } 415 }
403 } 416 }
404 417