diff options
author | mingchen | 2007-06-26 17:50:27 +0000 |
---|---|---|
committer | mingchen | 2007-06-26 17:50:27 +0000 |
commit | 8ff1d0968ff3c4173b036398359ef62a356ad2b2 (patch) | |
tree | 46e740c18866096e1c4f03e4a42cf7e0c0a4539c /OpenGridServices/OpenGrid.Framework.Data.MSSQL/MSSQLGridData.cs | |
parent | * Updated demo filter to show more common usage (as well as embedding multipl... (diff) | |
download | opensim-SC-8ff1d0968ff3c4173b036398359ef62a356ad2b2.zip opensim-SC-8ff1d0968ff3c4173b036398359ef62a356ad2b2.tar.gz opensim-SC-8ff1d0968ff3c4173b036398359ef62a356ad2b2.tar.bz2 opensim-SC-8ff1d0968ff3c4173b036398359ef62a356ad2b2.tar.xz |
*Added support for reservations in OpenGridServices (mysql only for now)
*SQL file coming soon (as soon as I can figure out how to get the
Diffstat (limited to '')
-rw-r--r-- | OpenGridServices/OpenGrid.Framework.Data.MSSQL/MSSQLGridData.cs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/OpenGridServices/OpenGrid.Framework.Data.MSSQL/MSSQLGridData.cs b/OpenGridServices/OpenGrid.Framework.Data.MSSQL/MSSQLGridData.cs index 92169c4..1dac4bd 100644 --- a/OpenGridServices/OpenGrid.Framework.Data.MSSQL/MSSQLGridData.cs +++ b/OpenGridServices/OpenGrid.Framework.Data.MSSQL/MSSQLGridData.cs | |||
@@ -181,10 +181,12 @@ namespace OpenGrid.Framework.Data.MSSQL | |||
181 | 181 | ||
182 | byte[] stream = TextProvider.GetBytes(uuid.ToStringHyphenated() + ":" + handle.ToString() + ":" + challenge); | 182 | byte[] stream = TextProvider.GetBytes(uuid.ToStringHyphenated() + ":" + handle.ToString() + ":" + challenge); |
183 | byte[] hash = HashProvider.ComputeHash(stream); | 183 | byte[] hash = HashProvider.ComputeHash(stream); |
184 | |||
185 | return false; | 184 | return false; |
186 | } | 185 | } |
186 | public ReservationData GetReservationAtPoint(uint x, uint y) | ||
187 | { | ||
188 | return null; | ||
189 | } | ||
187 | } | 190 | } |
188 | 191 | ||
189 | |||
190 | } | 192 | } |