aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/Services/HGLoginAuthService.cs
diff options
context:
space:
mode:
authordiva2009-04-01 01:18:21 +0000
committerdiva2009-04-01 01:18:21 +0000
commitd4f6750f8214dea3816b3496c73aef8829423168 (patch)
tree28b9074b9979587333bc092f978403bda2fd7167 /OpenSim/Framework/Communications/Services/HGLoginAuthService.cs
parentReplacing OpenMetaverse.StructuredData.dll again with one compiled under Wind... (diff)
downloadopensim-SC_OLD-d4f6750f8214dea3816b3496c73aef8829423168.zip
opensim-SC_OLD-d4f6750f8214dea3816b3496c73aef8829423168.tar.gz
opensim-SC_OLD-d4f6750f8214dea3816b3496c73aef8829423168.tar.bz2
opensim-SC_OLD-d4f6750f8214dea3816b3496c73aef8829423168.tar.xz
Added AllowLoginWithoutInventory to LoginService, to be overwritten in subclasses. Default is false. HGLoginAuthService sets it true. Better error handling dealing with inventory service faults.
Diffstat (limited to 'OpenSim/Framework/Communications/Services/HGLoginAuthService.cs')
-rw-r--r--OpenSim/Framework/Communications/Services/HGLoginAuthService.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/Services/HGLoginAuthService.cs b/OpenSim/Framework/Communications/Services/HGLoginAuthService.cs
index 99fbb2b..5e357d5 100644
--- a/OpenSim/Framework/Communications/Services/HGLoginAuthService.cs
+++ b/OpenSim/Framework/Communications/Services/HGLoginAuthService.cs
@@ -324,5 +324,11 @@ namespace OpenSim.Framework.Communications.Services
324 324
325 m_regionsConnector.LogOffUserFromGrid(SimInfo.RegionHandle, theUser.ID, theUser.CurrentAgent.SecureSessionID, "Logging you off"); 325 m_regionsConnector.LogOffUserFromGrid(SimInfo.RegionHandle, theUser.ID, theUser.CurrentAgent.SecureSessionID, "Logging you off");
326 } 326 }
327
328 protected override bool AllowLoginWithoutInventory()
329 {
330 return true;
331 }
332
327 } 333 }
328} 334}