diff options
author | Sean Dague | 2007-11-29 17:14:06 +0000 |
---|---|---|
committer | Sean Dague | 2007-11-29 17:14:06 +0000 |
commit | af9eb87ad1cad8c5d9b0ca3ba04dc14a12e95021 (patch) | |
tree | ecbdf1b90624e10ce14122c88245d059082705ea /OpenSim/Framework/Communications/LoginService.cs | |
parent | add a few more parens to make sure that throttling condition (diff) | |
download | opensim-SC_OLD-af9eb87ad1cad8c5d9b0ca3ba04dc14a12e95021.zip opensim-SC_OLD-af9eb87ad1cad8c5d9b0ca3ba04dc14a12e95021.tar.gz opensim-SC_OLD-af9eb87ad1cad8c5d9b0ca3ba04dc14a12e95021.tar.bz2 opensim-SC_OLD-af9eb87ad1cad8c5d9b0ca3ba04dc14a12e95021.tar.xz |
return an appropriate inv_lib_root, which the libsl folks have
identified as the reason libsl can't currently connect to OpenSim.
Patch from Justin Casey (IBM)
Diffstat (limited to 'OpenSim/Framework/Communications/LoginService.cs')
-rw-r--r-- | OpenSim/Framework/Communications/LoginService.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/LoginService.cs b/OpenSim/Framework/Communications/LoginService.cs index 118668c..239bada 100644 --- a/OpenSim/Framework/Communications/LoginService.cs +++ b/OpenSim/Framework/Communications/LoginService.cs | |||
@@ -130,6 +130,13 @@ namespace OpenSim.Framework.UserManagement | |||
130 | logResponse.InventoryRoot = InventoryRoot; | 130 | logResponse.InventoryRoot = InventoryRoot; |
131 | logResponse.InventorySkeleton = AgentInventoryArray; | 131 | logResponse.InventorySkeleton = AgentInventoryArray; |
132 | logResponse.InventoryLibrary = GetInventoryLibrary(); | 132 | logResponse.InventoryLibrary = GetInventoryLibrary(); |
133 | |||
134 | Hashtable InventoryLibRootHash = new Hashtable(); | ||
135 | InventoryLibRootHash["folder_id"] = "00000112-000f-0000-0000-000100bba000"; | ||
136 | ArrayList InventoryLibRoot = new ArrayList(); | ||
137 | InventoryLibRoot.Add(InventoryLibRootHash); | ||
138 | logResponse.InventoryLibRoot = InventoryLibRoot; | ||
139 | |||
133 | logResponse.InventoryLibraryOwner = GetLibraryOwner(); | 140 | logResponse.InventoryLibraryOwner = GetLibraryOwner(); |
134 | logResponse.CircuitCode = (Int32)circode; | 141 | logResponse.CircuitCode = (Int32)circode; |
135 | //logResponse.RegionX = 0; //overwritten | 142 | //logResponse.RegionX = 0; //overwritten |