diff options
author | Melanie | 2009-09-04 07:48:09 +0100 |
---|---|---|
committer | Melanie | 2009-09-04 07:48:09 +0100 |
commit | ac40c7a74c15e0f61ba5bfcb4c6a6fb39993a87c (patch) | |
tree | cc15d7ddc6423775d14b7d829400e6cf14e730e5 /OpenSim/Data/IAuthenticationData.cs | |
parent | Merge branch 'master' of ssh://melanie@opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC_OLD-ac40c7a74c15e0f61ba5bfcb4c6a6fb39993a87c.zip opensim-SC_OLD-ac40c7a74c15e0f61ba5bfcb4c6a6fb39993a87c.tar.gz opensim-SC_OLD-ac40c7a74c15e0f61ba5bfcb4c6a6fb39993a87c.tar.bz2 opensim-SC_OLD-ac40c7a74c15e0f61ba5bfcb4c6a6fb39993a87c.tar.xz |
Fully implement unencrypted auth token operations
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/IAuthenticationData.cs | 4 |
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 | } |