diff options
author | lbsa71 | 2007-09-27 14:57:43 +0000 |
---|---|---|
committer | lbsa71 | 2007-09-27 14:57:43 +0000 |
commit | 863195612bdef56165f2b4354bab280c371618b9 (patch) | |
tree | 63cec15a6c0338a8777640ed13fd7c3ce05eeba7 /OpenSim/Framework/Communications/LoginResponse.cs | |
parent | revert change to libsecondlife.dll.config which breaks Linux (diff) | |
download | opensim-SC_OLD-863195612bdef56165f2b4354bab280c371618b9.zip opensim-SC_OLD-863195612bdef56165f2b4354bab280c371618b9.tar.gz opensim-SC_OLD-863195612bdef56165f2b4354bab280c371618b9.tar.bz2 opensim-SC_OLD-863195612bdef56165f2b4354bab280c371618b9.tar.xz |
Reverting back to 2017 since 2018 were causing Linux breakage; reopening Tleiades patch 444 and 445.
Diffstat (limited to 'OpenSim/Framework/Communications/LoginResponse.cs')
-rw-r--r-- | OpenSim/Framework/Communications/LoginResponse.cs | 48 |
1 files changed, 13 insertions, 35 deletions
diff --git a/OpenSim/Framework/Communications/LoginResponse.cs b/OpenSim/Framework/Communications/LoginResponse.cs index b4280e7..b5a4184 100644 --- a/OpenSim/Framework/Communications/LoginResponse.cs +++ b/OpenSim/Framework/Communications/LoginResponse.cs | |||
@@ -26,10 +26,9 @@ namespace OpenSim.Framework.UserManagement | |||
26 | private ArrayList classifiedCategories; | 26 | private ArrayList classifiedCategories; |
27 | private ArrayList inventoryRoot; | 27 | private ArrayList inventoryRoot; |
28 | private ArrayList initialOutfit; | 28 | private ArrayList initialOutfit; |
29 | private ArrayList inventorySkeleton; | 29 | private ArrayList agentInventory; |
30 | private ArrayList inventoryLibraryOwner; | 30 | private ArrayList inventoryLibraryOwner; |
31 | private ArrayList inventoryLibraryRoot; | 31 | private ArrayList inventoryLibrary; |
32 | private ArrayList inventoryLibrarySkeleton; | ||
33 | 32 | ||
34 | private UserInfo userProfile; | 33 | private UserInfo userProfile; |
35 | 34 | ||
@@ -87,13 +86,11 @@ namespace OpenSim.Framework.UserManagement | |||
87 | 86 | ||
88 | this.defaultXmlRpcResponse = new XmlRpcResponse(); | 87 | this.defaultXmlRpcResponse = new XmlRpcResponse(); |
89 | this.userProfile = new UserInfo(); | 88 | this.userProfile = new UserInfo(); |
90 | |||
91 | this.initialOutfit = new ArrayList(); | ||
92 | this.inventoryRoot = new ArrayList(); | 89 | this.inventoryRoot = new ArrayList(); |
93 | this.inventorySkeleton = new ArrayList(); | 90 | this.initialOutfit = new ArrayList(); |
94 | this.inventoryLibrarySkeleton = new ArrayList(); | 91 | this.agentInventory = new ArrayList(); |
92 | this.inventoryLibrary = new ArrayList(); | ||
95 | this.inventoryLibraryOwner = new ArrayList(); | 93 | this.inventoryLibraryOwner = new ArrayList(); |
96 | this.inventoryLibraryRoot = new ArrayList(); | ||
97 | 94 | ||
98 | this.xmlRpcResponse = new XmlRpcResponse(); | 95 | this.xmlRpcResponse = new XmlRpcResponse(); |
99 | this.defaultXmlRpcResponse = new XmlRpcResponse(); | 96 | this.defaultXmlRpcResponse = new XmlRpcResponse(); |
@@ -240,15 +237,12 @@ namespace OpenSim.Framework.UserManagement | |||
240 | responseData["classified_categories"] = this.classifiedCategories; | 237 | responseData["classified_categories"] = this.classifiedCategories; |
241 | responseData["ui-config"] = this.uiConfig; | 238 | responseData["ui-config"] = this.uiConfig; |
242 | 239 | ||
243 | responseData["inventory-skeleton"] = this.inventorySkeleton; | 240 | responseData["inventory-skeleton"] = this.agentInventory; |
244 | responseData["inventory-skel-lib"] = this.inventoryLibrarySkeleton; | 241 | responseData["inventory-skel-lib"] = this.inventoryLibrary; |
245 | responseData["inventory-root"] = this.inventoryRoot; | 242 | responseData["inventory-root"] = this.inventoryRoot; |
246 | responseData["inventory-lib-owner"] = this.inventoryLibraryOwner; | ||
247 | responseData["inventory-lib-root"] = this.inventoryLibraryRoot; | ||
248 | |||
249 | responseData["gestures"] = new ArrayList(); // todo | 243 | responseData["gestures"] = new ArrayList(); // todo |
244 | responseData["inventory-lib-owner"] = this.inventoryLibraryOwner; | ||
250 | responseData["initial-outfit"] = this.initialOutfit; | 245 | responseData["initial-outfit"] = this.initialOutfit; |
251 | |||
252 | responseData["start_location"] = this.startLocation; | 246 | responseData["start_location"] = this.startLocation; |
253 | responseData["seed_capability"] = this.seedCapability; | 247 | responseData["seed_capability"] = this.seedCapability; |
254 | responseData["home"] = this.home; | 248 | responseData["home"] = this.home; |
@@ -602,23 +596,23 @@ namespace OpenSim.Framework.UserManagement | |||
602 | { | 596 | { |
603 | get | 597 | get |
604 | { | 598 | { |
605 | return this.inventorySkeleton; | 599 | return this.agentInventory; |
606 | } | 600 | } |
607 | set | 601 | set |
608 | { | 602 | { |
609 | this.inventorySkeleton = value; | 603 | this.agentInventory = value; |
610 | } | 604 | } |
611 | } | 605 | } |
612 | 606 | ||
613 | public ArrayList InventoryLibrarySkeleton | 607 | public ArrayList InventoryLibrary |
614 | { | 608 | { |
615 | get | 609 | get |
616 | { | 610 | { |
617 | return this.inventoryLibrarySkeleton; | 611 | return this.inventoryLibrary; |
618 | } | 612 | } |
619 | set | 613 | set |
620 | { | 614 | { |
621 | this.inventoryLibrarySkeleton = value; | 615 | this.inventoryLibrary = value; |
622 | } | 616 | } |
623 | } | 617 | } |
624 | 618 | ||
@@ -634,18 +628,6 @@ namespace OpenSim.Framework.UserManagement | |||
634 | } | 628 | } |
635 | } | 629 | } |
636 | 630 | ||
637 | public ArrayList InventoryLibraryRoot | ||
638 | { | ||
639 | get | ||
640 | { | ||
641 | return this.inventoryLibraryRoot; | ||
642 | } | ||
643 | set | ||
644 | { | ||
645 | this.inventoryLibraryRoot = value; | ||
646 | } | ||
647 | } | ||
648 | |||
649 | public string Home | 631 | public string Home |
650 | { | 632 | { |
651 | get | 633 | get |
@@ -683,7 +665,3 @@ namespace OpenSim.Framework.UserManagement | |||
683 | } | 665 | } |
684 | } | 666 | } |
685 | 667 | ||
686 | |||
687 | |||
688 | |||
689 | |||