diff options
author | Melanie | 2009-12-27 03:00:54 +0000 |
---|---|---|
committer | Melanie | 2009-12-27 03:00:54 +0000 |
commit | 8b9332e321d14815dbac8fcdc145480cddaf412c (patch) | |
tree | c8597cdc206200cb582c9f27e6a14e97f9f3af21 /OpenSim/Data | |
parent | Just make it compile :) (diff) | |
download | opensim-SC_OLD-8b9332e321d14815dbac8fcdc145480cddaf412c.zip opensim-SC_OLD-8b9332e321d14815dbac8fcdc145480cddaf412c.tar.gz opensim-SC_OLD-8b9332e321d14815dbac8fcdc145480cddaf412c.tar.bz2 opensim-SC_OLD-8b9332e321d14815dbac8fcdc145480cddaf412c.tar.xz |
Finish the presence service
Diffstat (limited to 'OpenSim/Data')
-rw-r--r-- | OpenSim/Data/IPresenceData.cs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/OpenSim/Data/IPresenceData.cs b/OpenSim/Data/IPresenceData.cs index b46b92d..1ccabcc 100644 --- a/OpenSim/Data/IPresenceData.cs +++ b/OpenSim/Data/IPresenceData.cs | |||
@@ -37,6 +37,7 @@ namespace OpenSim.Data | |||
37 | { | 37 | { |
38 | public UUID PrincipalID; | 38 | public UUID PrincipalID; |
39 | public UUID RegionID; | 39 | public UUID RegionID; |
40 | public UUID SessionID; | ||
40 | public Dictionary<string, string> Data; | 41 | public Dictionary<string, string> Data; |
41 | } | 42 | } |
42 | 43 | ||
@@ -47,8 +48,9 @@ namespace OpenSim.Data | |||
47 | { | 48 | { |
48 | bool Store(PresenceData data); | 49 | bool Store(PresenceData data); |
49 | 50 | ||
50 | PresenceData Get(UUID principalID); | 51 | PresenceData Get(UUID sessionID); |
51 | 52 | void LogoutRegionAgents(UUID regionID); | |
52 | bool Delete(UUID regionID); | 53 | bool ReportAgent(UUID sessionID, UUID regionID, string position, string lookAt); |
54 | PresenceData[] Get(string field, string data); | ||
53 | } | 55 | } |
54 | } | 56 | } |