diff options
Diffstat (limited to 'OpenSim/Framework/Communications/Cache/CachedUserInfo.cs')
-rw-r--r-- | OpenSim/Framework/Communications/Cache/CachedUserInfo.cs | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/OpenSim/Framework/Communications/Cache/CachedUserInfo.cs b/OpenSim/Framework/Communications/Cache/CachedUserInfo.cs index 11516f0..4c0aaa2 100644 --- a/OpenSim/Framework/Communications/Cache/CachedUserInfo.cs +++ b/OpenSim/Framework/Communications/Cache/CachedUserInfo.cs | |||
@@ -101,11 +101,19 @@ namespace OpenSim.Framework.Communications.Cache | |||
101 | m_userProfile = userProfile; | 101 | m_userProfile = userProfile; |
102 | } | 102 | } |
103 | 103 | ||
104 | public CachedUserInfo(CommunicationsManager commsManager, UserProfileData userProfile, IClientAPI remoteClient) | 104 | /// <summary> |
105 | /// Constructor | ||
106 | /// </summary> | ||
107 | /// <param name="commsManager"></param> | ||
108 | /// <param name="userProfile"></param> | ||
109 | /// <param name="sessionId"> | ||
110 | /// Session id of the user. This is used in subsequent security checks. | ||
111 | /// </param> | ||
112 | public CachedUserInfo(CommunicationsManager commsManager, UserProfileData userProfile, LLUUID sessionId) | ||
105 | { | 113 | { |
106 | m_commsManager = commsManager; | 114 | m_commsManager = commsManager; |
107 | m_userProfile = userProfile; | 115 | m_userProfile = userProfile; |
108 | m_session_id = remoteClient.SessionId; | 116 | m_session_id = sessionId; |
109 | } | 117 | } |
110 | 118 | ||
111 | /// <summary> | 119 | /// <summary> |