diff options
author | Jeff Ames | 2007-12-20 05:43:02 +0000 |
---|---|---|
committer | Jeff Ames | 2007-12-20 05:43:02 +0000 |
commit | be2ad79e52efb5eb543057e8e73fa601d0b91c87 (patch) | |
tree | 688a11b5737835b3cd46b2beaf01c6e9d23ace09 /OpenSim/Region/Communications/Local | |
parent | *Added event called after any movement is handled (OnClientMovement) - will b... (diff) | |
download | opensim-SC_OLD-be2ad79e52efb5eb543057e8e73fa601d0b91c87.zip opensim-SC_OLD-be2ad79e52efb5eb543057e8e73fa601d0b91c87.tar.gz opensim-SC_OLD-be2ad79e52efb5eb543057e8e73fa601d0b91c87.tar.bz2 opensim-SC_OLD-be2ad79e52efb5eb543057e8e73fa601d0b91c87.tar.xz |
Added patch from Johan. First attempt to solve the LibSL.Packet GC problem. Works with LibSL rev>1532
Diffstat (limited to 'OpenSim/Region/Communications/Local')
-rw-r--r-- | OpenSim/Region/Communications/Local/LocalBackEndServices.cs | 2 | ||||
-rw-r--r-- | OpenSim/Region/Communications/Local/LocalLoginService.cs | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/OpenSim/Region/Communications/Local/LocalBackEndServices.cs b/OpenSim/Region/Communications/Local/LocalBackEndServices.cs index 0ec7c99..f57de1c 100644 --- a/OpenSim/Region/Communications/Local/LocalBackEndServices.cs +++ b/OpenSim/Region/Communications/Local/LocalBackEndServices.cs | |||
@@ -374,7 +374,7 @@ namespace OpenSim.Region.Communications.Local | |||
374 | regData["status"] = "active"; | 374 | regData["status"] = "active"; |
375 | regData["handle"] = region.ToString(); | 375 | regData["handle"] = region.ToString(); |
376 | 376 | ||
377 | respData[reg.RegionID.ToStringHyphenated()] = regData; | 377 | respData[reg.RegionID.ToString()] = regData; |
378 | } | 378 | } |
379 | } | 379 | } |
380 | 380 | ||
diff --git a/OpenSim/Region/Communications/Local/LocalLoginService.cs b/OpenSim/Region/Communications/Local/LocalLoginService.cs index 37cea1f..2c08707 100644 --- a/OpenSim/Region/Communications/Local/LocalLoginService.cs +++ b/OpenSim/Region/Communications/Local/LocalLoginService.cs | |||
@@ -177,10 +177,10 @@ namespace OpenSim.Region.Communications.Local | |||
177 | } | 177 | } |
178 | TempHash = new Hashtable(); | 178 | TempHash = new Hashtable(); |
179 | TempHash["name"] = InvFolder.name; | 179 | TempHash["name"] = InvFolder.name; |
180 | TempHash["parent_id"] = InvFolder.parentID.ToStringHyphenated(); | 180 | TempHash["parent_id"] = InvFolder.parentID.ToString(); |
181 | TempHash["version"] = (Int32) InvFolder.version; | 181 | TempHash["version"] = (Int32) InvFolder.version; |
182 | TempHash["type_default"] = (Int32) InvFolder.type; | 182 | TempHash["type_default"] = (Int32) InvFolder.type; |
183 | TempHash["folder_id"] = InvFolder.folderID.ToStringHyphenated(); | 183 | TempHash["folder_id"] = InvFolder.folderID.ToString(); |
184 | AgentInventoryArray.Add(TempHash); | 184 | AgentInventoryArray.Add(TempHash); |
185 | } | 185 | } |
186 | return new InventoryData(AgentInventoryArray, rootID); | 186 | return new InventoryData(AgentInventoryArray, rootID); |
@@ -196,10 +196,10 @@ namespace OpenSim.Region.Communications.Local | |||
196 | { | 196 | { |
197 | TempHash = new Hashtable(); | 197 | TempHash = new Hashtable(); |
198 | TempHash["name"] = InvFolder.FolderName; | 198 | TempHash["name"] = InvFolder.FolderName; |
199 | TempHash["parent_id"] = InvFolder.ParentID.ToStringHyphenated(); | 199 | TempHash["parent_id"] = InvFolder.ParentID.ToString(); |
200 | TempHash["version"] = (Int32) InvFolder.Version; | 200 | TempHash["version"] = (Int32) InvFolder.Version; |
201 | TempHash["type_default"] = (Int32) InvFolder.DefaultType; | 201 | TempHash["type_default"] = (Int32) InvFolder.DefaultType; |
202 | TempHash["folder_id"] = InvFolder.FolderID.ToStringHyphenated(); | 202 | TempHash["folder_id"] = InvFolder.FolderID.ToString(); |
203 | AgentInventoryArray.Add(TempHash); | 203 | AgentInventoryArray.Add(TempHash); |
204 | } | 204 | } |
205 | 205 | ||
@@ -207,4 +207,4 @@ namespace OpenSim.Region.Communications.Local | |||
207 | } | 207 | } |
208 | } | 208 | } |
209 | } | 209 | } |
210 | } \ No newline at end of file | 210 | } |