diff options
author | Teravus Ovares | 2008-02-25 06:33:14 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-02-25 06:33:14 +0000 |
commit | b831a91852b34473f993f9a3e88ddd4e0c8455ca (patch) | |
tree | 3c61bfa3800274fed804812b6145f2d5388626bb /OpenSim/Grid/UserServer/UserLoginService.cs | |
parent | Update svn properties. (diff) | |
download | opensim-SC_OLD-b831a91852b34473f993f9a3e88ddd4e0c8455ca.zip opensim-SC_OLD-b831a91852b34473f993f9a3e88ddd4e0c8455ca.tar.gz opensim-SC_OLD-b831a91852b34473f993f9a3e88ddd4e0c8455ca.tar.bz2 opensim-SC_OLD-b831a91852b34473f993f9a3e88ddd4e0c8455ca.tar.xz |
* Message Server Linkages (still not ready for use so don't start it yet)
Diffstat (limited to 'OpenSim/Grid/UserServer/UserLoginService.cs')
-rw-r--r-- | OpenSim/Grid/UserServer/UserLoginService.cs | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/OpenSim/Grid/UserServer/UserLoginService.cs b/OpenSim/Grid/UserServer/UserLoginService.cs index 80899e8..a82b978 100644 --- a/OpenSim/Grid/UserServer/UserLoginService.cs +++ b/OpenSim/Grid/UserServer/UserLoginService.cs | |||
@@ -144,7 +144,13 @@ namespace OpenSim.Grid.UserServer | |||
144 | m_log.ErrorFormat( | 144 | m_log.ErrorFormat( |
145 | "[LOGIN]: XMLRPC request for {0} failed, fault code: {1}, reason: {2}", | 145 | "[LOGIN]: XMLRPC request for {0} failed, fault code: {1}, reason: {2}", |
146 | SimInfo.httpServerURI, GridResp.FaultCode, GridResp.FaultString); | 146 | SimInfo.httpServerURI, GridResp.FaultCode, GridResp.FaultString); |
147 | } | 147 | } |
148 | handler001 = OnUserLoggedInAtLocation; | ||
149 | if (handler001 != null) | ||
150 | { | ||
151 | m_log.Info("[LOGIN]: Letting other objects know about login"); | ||
152 | handler001(theUser.UUID, theUser.currentAgent.sessionID, theUser.currentAgent.currentRegion, theUser.currentAgent.currentHandle, theUser.currentAgent.currentPos); | ||
153 | } | ||
148 | } | 154 | } |
149 | catch (Exception) | 155 | catch (Exception) |
150 | { | 156 | { |
@@ -219,6 +225,7 @@ namespace OpenSim.Grid.UserServer | |||
219 | handler001 = OnUserLoggedInAtLocation; | 225 | handler001 = OnUserLoggedInAtLocation; |
220 | if (handler001 != null) | 226 | if (handler001 != null) |
221 | { | 227 | { |
228 | m_log.Info("[LOGIN]: Letting other objects know about login"); | ||
222 | handler001(theUser.UUID, theUser.currentAgent.sessionID, theUser.currentAgent.currentRegion, theUser.currentAgent.currentHandle, theUser.currentAgent.currentPos); | 229 | handler001(theUser.UUID, theUser.currentAgent.sessionID, theUser.currentAgent.currentRegion, theUser.currentAgent.currentHandle, theUser.currentAgent.currentPos); |
223 | } | 230 | } |
224 | } | 231 | } |