aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/UserProfileData.cs
diff options
context:
space:
mode:
authorSean Dague2008-04-09 20:38:25 +0000
committerSean Dague2008-04-09 20:38:25 +0000
commit69d5eb3cb24261b9eb400859d59adbcb79bc8cb2 (patch)
treefa89252bc617d8d5c5cf33d25300bf0c770077e1 /OpenSim/Framework/UserProfileData.cs
parentNHibernate Inventory support. Lightly tested, but seems to work (diff)
downloadopensim-SC_OLD-69d5eb3cb24261b9eb400859d59adbcb79bc8cb2.zip
opensim-SC_OLD-69d5eb3cb24261b9eb400859d59adbcb79bc8cb2.tar.gz
opensim-SC_OLD-69d5eb3cb24261b9eb400859d59adbcb79bc8cb2.tar.bz2
opensim-SC_OLD-69d5eb3cb24261b9eb400859d59adbcb79bc8cb2.tar.xz
split out UserProfile
Diffstat (limited to 'OpenSim/Framework/UserProfileData.cs')
-rw-r--r--OpenSim/Framework/UserProfileData.cs67
1 files changed, 0 insertions, 67 deletions
diff --git a/OpenSim/Framework/UserProfileData.cs b/OpenSim/Framework/UserProfileData.cs
index c5d27a2..6a49f0d 100644
--- a/OpenSim/Framework/UserProfileData.cs
+++ b/OpenSim/Framework/UserProfileData.cs
@@ -148,71 +148,4 @@ namespace OpenSim.Framework
148 /// </summary> 148 /// </summary>
149 public UserAgentData currentAgent; 149 public UserAgentData currentAgent;
150 } 150 }
151
152 /// <summary>
153 /// Information about a users session
154 /// </summary>
155 public class UserAgentData
156 {
157 /// <summary>
158 /// The UUID of the users avatar (not the agent!)
159 /// </summary>
160 public LLUUID UUID;
161
162 /// <summary>
163 /// The IP address of the user
164 /// </summary>
165 public string agentIP = String.Empty;
166
167 /// <summary>
168 /// The port of the user
169 /// </summary>
170 public uint agentPort;
171
172 /// <summary>
173 /// Is the user online?
174 /// </summary>
175 public bool agentOnline;
176
177 /// <summary>
178 /// The session ID for the user (also the agent ID)
179 /// </summary>
180 public LLUUID sessionID;
181
182 /// <summary>
183 /// The "secure" session ID for the user
184 /// </summary>
185 /// <remarks>Not very secure. Dont rely on it for anything more than Linden Lab does.</remarks>
186 public LLUUID secureSessionID;
187
188 /// <summary>
189 /// The region the user logged into initially
190 /// </summary>
191 public LLUUID regionID;
192
193 /// <summary>
194 /// A unix timestamp from when the user logged in
195 /// </summary>
196 public int loginTime;
197
198 /// <summary>
199 /// When this agent expired and logged out, 0 if still online
200 /// </summary>
201 public int logoutTime;
202
203 /// <summary>
204 /// Current region the user is logged into
205 /// </summary>
206 public LLUUID currentRegion;
207
208 /// <summary>
209 /// Region handle of the current region the user is in
210 /// </summary>
211 public ulong currentHandle;
212
213 /// <summary>
214 /// The position of the user within the region
215 /// </summary>
216 public LLVector3 currentPos;
217 }
218} 151}