Fully implement unencrypted auth token operations

This commit is contained in:
Melanie
2009-09-04 07:48:09 +01:00
parent 548f508044
commit ac40c7a74c
3 changed files with 64 additions and 3 deletions

View File

@@ -48,5 +48,9 @@ namespace OpenSim.Data
bool Store(AuthenticationData data);
bool SetDataItem(UUID principalID, string item, string value);
bool SetToken(UUID principalID, string token, int lifetime);
bool CheckToken(UUID principalID, string token, int lifetime);
}
}