diff options
author | Adam Frisby | 2007-05-05 23:04:47 +0000 |
---|---|---|
committer | Adam Frisby | 2007-05-05 23:04:47 +0000 |
commit | 6d6117e0196e8aabccee2a8879b0b6ad950ab3ab (patch) | |
tree | 61d8e736ebd1a407010900d2839fbfdf83ea37d7 /OpenGrid.Framework.Data.DB4o/DB4oGridData.cs | |
parent | Grid Framework for DB4o - supports all framework.data interfaces. (diff) | |
download | opensim-SC_OLD-6d6117e0196e8aabccee2a8879b0b6ad950ab3ab.zip opensim-SC_OLD-6d6117e0196e8aabccee2a8879b0b6ad950ab3ab.tar.gz opensim-SC_OLD-6d6117e0196e8aabccee2a8879b0b6ad950ab3ab.tar.bz2 opensim-SC_OLD-6d6117e0196e8aabccee2a8879b0b6ad950ab3ab.tar.xz |
You can now save profiles to a database. (Zomg!)
Diffstat (limited to 'OpenGrid.Framework.Data.DB4o/DB4oGridData.cs')
-rw-r--r-- | OpenGrid.Framework.Data.DB4o/DB4oGridData.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenGrid.Framework.Data.DB4o/DB4oGridData.cs b/OpenGrid.Framework.Data.DB4o/DB4oGridData.cs index d15e343..c8152f4 100644 --- a/OpenGrid.Framework.Data.DB4o/DB4oGridData.cs +++ b/OpenGrid.Framework.Data.DB4o/DB4oGridData.cs | |||
@@ -39,6 +39,11 @@ namespace OpenGrid.Framework.Data.DB4o | |||
39 | throw new Exception("Unable to find profile with UUID (" + uuid.ToStringHyphenated() + ")"); | 39 | throw new Exception("Unable to find profile with UUID (" + uuid.ToStringHyphenated() + ")"); |
40 | } | 40 | } |
41 | 41 | ||
42 | public DataResponse AddProfile(SimProfileData profile) | ||
43 | { | ||
44 | return DataResponse.RESPONSE_OK; | ||
45 | } | ||
46 | |||
42 | public bool AuthenticateSim(LLUUID uuid, ulong handle, string key) { | 47 | public bool AuthenticateSim(LLUUID uuid, ulong handle, string key) { |
43 | if (manager.profiles[uuid].regionRecvKey == key) | 48 | if (manager.profiles[uuid].regionRecvKey == key) |
44 | return true; | 49 | return true; |