diff options
author | Teravus Ovares | 2007-11-13 22:48:19 +0000 |
---|---|---|
committer | Teravus Ovares | 2007-11-13 22:48:19 +0000 |
commit | 9f6b3e2357e76b9b85b447da189b4bf4163edd3c (patch) | |
tree | 7d9c39258e45e6271db953608e6868433f9ac70d /OpenSim/Framework/Data | |
parent | first pass on unlinking of objects. From Jay Clarke (IBM) (diff) | |
download | opensim-SC_OLD-9f6b3e2357e76b9b85b447da189b4bf4163edd3c.zip opensim-SC_OLD-9f6b3e2357e76b9b85b447da189b4bf4163edd3c.tar.gz opensim-SC_OLD-9f6b3e2357e76b9b85b447da189b4bf4163edd3c.tar.bz2 opensim-SC_OLD-9f6b3e2357e76b9b85b447da189b4bf4163edd3c.tar.xz |
* Added AvatarPicker in Standalone mode. Works for finding avatar to ban, manually trying to add a friend (with the add button) or useful to those who are curious which usernames have visited your standalone sim. Important for future development :D.
* Grid mode always returns 0 results until the Grid Communications portion is done.
Diffstat (limited to 'OpenSim/Framework/Data')
-rw-r--r-- | OpenSim/Framework/Data/GridData.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/OpenSim/Framework/Data/GridData.cs b/OpenSim/Framework/Data/GridData.cs index b3b6ed7..23e7bf6 100644 --- a/OpenSim/Framework/Data/GridData.cs +++ b/OpenSim/Framework/Data/GridData.cs | |||
@@ -26,9 +26,19 @@ | |||
26 | * | 26 | * |
27 | */ | 27 | */ |
28 | using libsecondlife; | 28 | using libsecondlife; |
29 | using System.Collections.Generic; | ||
29 | 30 | ||
30 | namespace OpenSim.Framework.Data | 31 | namespace OpenSim.Framework.Data |
31 | { | 32 | { |
33 | public class AvatarPickerAvatar | ||
34 | { | ||
35 | public LLUUID AvatarID; | ||
36 | public string firstName; | ||
37 | public string lastName; | ||
38 | public AvatarPickerAvatar() | ||
39 | { | ||
40 | } | ||
41 | } | ||
32 | public enum DataResponse | 42 | public enum DataResponse |
33 | { | 43 | { |
34 | RESPONSE_OK, | 44 | RESPONSE_OK, |
@@ -66,6 +76,8 @@ namespace OpenSim.Framework.Data | |||
66 | /// <returns>An array containing all the sim profiles in the specified range</returns> | 76 | /// <returns>An array containing all the sim profiles in the specified range</returns> |
67 | RegionProfileData[] GetProfilesInRange(uint Xmin, uint Ymin, uint Xmax, uint Ymax); | 77 | RegionProfileData[] GetProfilesInRange(uint Xmin, uint Ymin, uint Xmax, uint Ymax); |
68 | 78 | ||
79 | |||
80 | List<AvatarPickerAvatar> GeneratePickerResults(LLUUID queryID, string query); | ||
69 | /// <summary> | 81 | /// <summary> |
70 | /// Authenticates a sim by use of it's recv key. | 82 | /// Authenticates a sim by use of it's recv key. |
71 | /// WARNING: Insecure | 83 | /// WARNING: Insecure |