aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/IAuthenticationData.cs
diff options
context:
space:
mode:
authorTeravus Ovares (Dan Olivares)2009-09-04 04:26:14 -0400
committerTeravus Ovares (Dan Olivares)2009-09-04 04:26:14 -0400
commitd49ee1f8ab34a4328adacbedf5daec7b25d0df14 (patch)
tree771f738ab34d0a7c66ca69f31ba23d42ffab666e /OpenSim/Data/IAuthenticationData.cs
parent* Make the RegionCombinerModule also register to handle permissions for the v... (diff)
parentpreparing LandData seriali(s|z)ation into OAR [not yet functional] (diff)
downloadopensim-SC_OLD-d49ee1f8ab34a4328adacbedf5daec7b25d0df14.zip
opensim-SC_OLD-d49ee1f8ab34a4328adacbedf5daec7b25d0df14.tar.gz
opensim-SC_OLD-d49ee1f8ab34a4328adacbedf5daec7b25d0df14.tar.bz2
opensim-SC_OLD-d49ee1f8ab34a4328adacbedf5daec7b25d0df14.tar.xz
Merge branch 'master' of ssh://MyConnection/var/git/opensim
Diffstat (limited to 'OpenSim/Data/IAuthenticationData.cs')
-rw-r--r--OpenSim/Data/IAuthenticationData.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Data/IAuthenticationData.cs b/OpenSim/Data/IAuthenticationData.cs
index f848716..7753e04 100644
--- a/OpenSim/Data/IAuthenticationData.cs
+++ b/OpenSim/Data/IAuthenticationData.cs
@@ -48,5 +48,9 @@ namespace OpenSim.Data
48 bool Store(AuthenticationData data); 48 bool Store(AuthenticationData data);
49 49
50 bool SetDataItem(UUID principalID, string item, string value); 50 bool SetDataItem(UUID principalID, string item, string value);
51
52 bool SetToken(UUID principalID, string token, int lifetime);
53
54 bool CheckToken(UUID principalID, string token, int lifetime);
51 } 55 }
52} 56}