diff options
Diffstat (limited to '')
-rw-r--r-- | OpenGrid.Framework.Data.MySQL/MySQLGridData.cs | 10 | ||||
-rw-r--r-- | OpenGrid.Framework.Data/GridData.cs | 2 | ||||
-rw-r--r-- | OpenGrid.Framework.Data/SimProfileData.cs | 8 |
3 files changed, 20 insertions, 0 deletions
diff --git a/OpenGrid.Framework.Data.MySQL/MySQLGridData.cs b/OpenGrid.Framework.Data.MySQL/MySQLGridData.cs index 3db32f3..0a84cdb 100644 --- a/OpenGrid.Framework.Data.MySQL/MySQLGridData.cs +++ b/OpenGrid.Framework.Data.MySQL/MySQLGridData.cs | |||
@@ -25,6 +25,16 @@ namespace OpenGrid.Framework.Data.MySQL | |||
25 | database.Close(); | 25 | database.Close(); |
26 | } | 26 | } |
27 | 27 | ||
28 | public string getName() | ||
29 | { | ||
30 | return "MySql OpenGridData"; | ||
31 | } | ||
32 | |||
33 | public string getVersion() | ||
34 | { | ||
35 | return "0.1"; | ||
36 | } | ||
37 | |||
28 | /// <summary> | 38 | /// <summary> |
29 | /// Returns a sim profile from it's location | 39 | /// Returns a sim profile from it's location |
30 | /// </summary> | 40 | /// </summary> |
diff --git a/OpenGrid.Framework.Data/GridData.cs b/OpenGrid.Framework.Data/GridData.cs index 8ace484..d6b5a2b 100644 --- a/OpenGrid.Framework.Data/GridData.cs +++ b/OpenGrid.Framework.Data/GridData.cs | |||
@@ -11,5 +11,7 @@ namespace OpenGrid.Framework.Data | |||
11 | bool AuthenticateSim(libsecondlife.LLUUID UUID, ulong regionHandle, string simrecvkey); | 11 | bool AuthenticateSim(libsecondlife.LLUUID UUID, ulong regionHandle, string simrecvkey); |
12 | void Initialise(); | 12 | void Initialise(); |
13 | void Close(); | 13 | void Close(); |
14 | string getName(); | ||
15 | string getVersion(); | ||
14 | } | 16 | } |
15 | } | 17 | } |
diff --git a/OpenGrid.Framework.Data/SimProfileData.cs b/OpenGrid.Framework.Data/SimProfileData.cs index a701875..4cc9982 100644 --- a/OpenGrid.Framework.Data/SimProfileData.cs +++ b/OpenGrid.Framework.Data/SimProfileData.cs | |||
@@ -61,5 +61,13 @@ namespace OpenGrid.Framework.Data | |||
61 | /// </summary> | 61 | /// </summary> |
62 | /// <remarks>Used for floating sim pools where the region data is not nessecarily coupled to a specific server</remarks> | 62 | /// <remarks>Used for floating sim pools where the region data is not nessecarily coupled to a specific server</remarks> |
63 | public string regionDataURI; | 63 | public string regionDataURI; |
64 | |||
65 | public string regionAssetURI; | ||
66 | public string regionAssetSendKey; | ||
67 | public string regionAssetRecvKey; | ||
68 | |||
69 | public string regionUserURI; | ||
70 | public string regionUserSendKey; | ||
71 | public string regionUserRecvKey; | ||
64 | } | 72 | } |
65 | } | 73 | } |