* Updated UserAgentData class, adding new properties, modifying existing ones datatypes.

* Added read-only support for new userserver to MySQL Data Interface. (TODO: Add write capabilities to the Agent table.)
* Added new regionMapTextureID support to MySQL Data server. (thanks MorphW!)
This commit is contained in:
Adam Frisby
2007-05-20 14:21:55 +00:00
parent 5413fac008
commit 601beec8b3
2 changed files with 89 additions and 5 deletions

View File

@@ -38,14 +38,17 @@ namespace OpenGrid.Framework.Data
public class UserAgentData
{
public LLUUID UUID; // Internal session ID
public string agentIP; // The IP of the agent
public uint agentPort; // The port of the agent
public bool agentOnline; // The online status of the agent
public LLUUID sessionID; // The session ID for the agent
public LLUUID secureSessionID; // The secure session ID for the agent
public LLUUID sessionID; // The session ID for the agent (used by client)
public LLUUID secureSessionID; // The secure session ID for the agent (used by client)
public LLUUID regionID; // The region ID the agent occupies
public uint loginTime; // EPOCH based Timestamp
public uint logoutTime; // Timestamp or 0 if N/A
public int loginTime; // EPOCH based Timestamp
public int logoutTime; // Timestamp or 0 if N/A
public LLUUID currentRegion; // UUID of the users current region
public ulong currentHandle; // RegionHandle of the users current region
public LLVector3 currentPos; // Current position in the region
}
}