diff options
Diffstat (limited to 'OpenSim/Framework/Data/RegionProfileData.cs')
-rw-r--r-- | OpenSim/Framework/Data/RegionProfileData.cs | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/OpenSim/Framework/Data/RegionProfileData.cs b/OpenSim/Framework/Data/RegionProfileData.cs index f736571..84713b4 100644 --- a/OpenSim/Framework/Data/RegionProfileData.cs +++ b/OpenSim/Framework/Data/RegionProfileData.cs | |||
@@ -56,7 +56,6 @@ namespace OpenSim.Framework.Data | |||
56 | /// Coordinates of the region | 56 | /// Coordinates of the region |
57 | /// </summary> | 57 | /// </summary> |
58 | public uint regionLocX; | 58 | public uint regionLocX; |
59 | |||
60 | public uint regionLocY; | 59 | public uint regionLocY; |
61 | public uint regionLocZ; // Reserved (round-robin, layers, etc) | 60 | public uint regionLocZ; // Reserved (round-robin, layers, etc) |
62 | 61 | ||
@@ -65,7 +64,6 @@ namespace OpenSim.Framework.Data | |||
65 | /// </summary> | 64 | /// </summary> |
66 | /// <remarks>Not very secure, needs improvement.</remarks> | 65 | /// <remarks>Not very secure, needs improvement.</remarks> |
67 | public string regionSendKey = String.Empty; | 66 | public string regionSendKey = String.Empty; |
68 | |||
69 | public string regionRecvKey = String.Empty; | 67 | public string regionRecvKey = String.Empty; |
70 | public string regionSecret = String.Empty; | 68 | public string regionSecret = String.Empty; |
71 | 69 | ||
@@ -78,7 +76,6 @@ namespace OpenSim.Framework.Data | |||
78 | /// Information about the server that the region is currently hosted on | 76 | /// Information about the server that the region is currently hosted on |
79 | /// </summary> | 77 | /// </summary> |
80 | public string serverIP = String.Empty; | 78 | public string serverIP = String.Empty; |
81 | |||
82 | public uint serverPort; | 79 | public uint serverPort; |
83 | public string serverURI = String.Empty; | 80 | public string serverURI = String.Empty; |
84 | 81 | ||
@@ -90,7 +87,6 @@ namespace OpenSim.Framework.Data | |||
90 | /// Set of optional overrides. Can be used to create non-eulicidean spaces. | 87 | /// Set of optional overrides. Can be used to create non-eulicidean spaces. |
91 | /// </summary> | 88 | /// </summary> |
92 | public ulong regionNorthOverrideHandle; | 89 | public ulong regionNorthOverrideHandle; |
93 | |||
94 | public ulong regionSouthOverrideHandle; | 90 | public ulong regionSouthOverrideHandle; |
95 | public ulong regionEastOverrideHandle; | 91 | public ulong regionEastOverrideHandle; |
96 | public ulong regionWestOverrideHandle; | 92 | public ulong regionWestOverrideHandle; |
@@ -133,7 +129,6 @@ namespace OpenSim.Framework.Data | |||
133 | /// </summary> | 129 | /// </summary> |
134 | public LLUUID originUUID; | 130 | public LLUUID originUUID; |
135 | 131 | ||
136 | |||
137 | /// <summary> | 132 | /// <summary> |
138 | /// Get Sim profile data from grid server when in grid mode | 133 | /// Get Sim profile data from grid server when in grid mode |
139 | /// </summary> | 134 | /// </summary> |
@@ -184,7 +179,7 @@ namespace OpenSim.Framework.Data | |||
184 | /// <param name="gridserver_recvkey"></param> | 179 | /// <param name="gridserver_recvkey"></param> |
185 | /// <returns>The sim profile. Null if there was a request failure</returns> | 180 | /// <returns>The sim profile. Null if there was a request failure</returns> |
186 | public static RegionProfileData RequestSimProfileData(ulong region_handle, string gridserver_url, | 181 | public static RegionProfileData RequestSimProfileData(ulong region_handle, string gridserver_url, |
187 | string gridserver_sendkey, string gridserver_recvkey) | 182 | string gridserver_sendkey, string gridserver_recvkey) |
188 | { | 183 | { |
189 | Hashtable requestData = new Hashtable(); | 184 | Hashtable requestData = new Hashtable(); |
190 | requestData["region_handle"] = region_handle.ToString(); | 185 | requestData["region_handle"] = region_handle.ToString(); |
@@ -226,7 +221,7 @@ namespace OpenSim.Framework.Data | |||
226 | /// <param name="gridserver_recvkey"></param> | 221 | /// <param name="gridserver_recvkey"></param> |
227 | /// <returns>The sim profile. Null if there was a request failure</returns> | 222 | /// <returns>The sim profile. Null if there was a request failure</returns> |
228 | public static RegionProfileData RequestSimProfileData(string regionName, string gridserver_url, | 223 | public static RegionProfileData RequestSimProfileData(string regionName, string gridserver_url, |
229 | string gridserver_sendkey, string gridserver_recvkey) | 224 | string gridserver_sendkey, string gridserver_recvkey) |
230 | { | 225 | { |
231 | Hashtable requestData = new Hashtable(); | 226 | Hashtable requestData = new Hashtable(); |
232 | requestData["region_name_search"] = regionName; | 227 | requestData["region_name_search"] = regionName; |