aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/AgentCircuitData.cs
diff options
context:
space:
mode:
authorCharles Krinke2008-12-14 02:17:12 +0000
committerCharles Krinke2008-12-14 02:17:12 +0000
commite6eb571c1d19972fe7eb4c3f7de113b1b91f5e02 (patch)
tree2140979c8cf3f4d4d2b60a355be65abd659508b9 /OpenSim/Framework/AgentCircuitData.cs
parentMantis#2811. Thank you kindly, Diva for a patch that resolves (diff)
downloadopensim-SC_OLD-e6eb571c1d19972fe7eb4c3f7de113b1b91f5e02.zip
opensim-SC_OLD-e6eb571c1d19972fe7eb4c3f7de113b1b91f5e02.tar.gz
opensim-SC_OLD-e6eb571c1d19972fe7eb4c3f7de113b1b91f5e02.tar.bz2
opensim-SC_OLD-e6eb571c1d19972fe7eb4c3f7de113b1b91f5e02.tar.xz
Mantis#2725. Thank you kindly, Diva, for a patch that:
Adds missing protocol pieces for EstablishAgentCommunication event which allows the client to activate CAPS and the EQ for child agents.
Diffstat (limited to 'OpenSim/Framework/AgentCircuitData.cs')
-rw-r--r--OpenSim/Framework/AgentCircuitData.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Framework/AgentCircuitData.cs b/OpenSim/Framework/AgentCircuitData.cs
index 045bd00..2671e87 100644
--- a/OpenSim/Framework/AgentCircuitData.cs
+++ b/OpenSim/Framework/AgentCircuitData.cs
@@ -26,6 +26,7 @@
26 */ 26 */
27 27
28using System; 28using System;
29using System.Collections.Generic;
29using OpenMetaverse; 30using OpenMetaverse;
30 31
31namespace OpenSim.Framework 32namespace OpenSim.Framework
@@ -35,6 +36,7 @@ namespace OpenSim.Framework
35 public UUID AgentID; 36 public UUID AgentID;
36 public UUID BaseFolder; 37 public UUID BaseFolder;
37 public string CapsPath = String.Empty; 38 public string CapsPath = String.Empty;
39 public Dictionary<ulong, string> ChildrenCapSeeds;
38 public bool child; 40 public bool child;
39 public uint circuitcode; 41 public uint circuitcode;
40 public string firstname; 42 public string firstname;
@@ -61,6 +63,7 @@ namespace OpenSim.Framework
61 InventoryFolder = new UUID(cAgent.InventoryFolder); 63 InventoryFolder = new UUID(cAgent.InventoryFolder);
62 BaseFolder = new UUID(cAgent.BaseFolder); 64 BaseFolder = new UUID(cAgent.BaseFolder);
63 CapsPath = cAgent.CapsPath; 65 CapsPath = cAgent.CapsPath;
66 ChildrenCapSeeds = cAgent.ChildrenCapSeeds;
64 } 67 }
65 } 68 }
66 69
@@ -70,6 +73,7 @@ namespace OpenSim.Framework
70 public Guid AgentID; 73 public Guid AgentID;
71 public Guid BaseFolder; 74 public Guid BaseFolder;
72 public string CapsPath = String.Empty; 75 public string CapsPath = String.Empty;
76 public Dictionary<ulong, string> ChildrenCapSeeds;
73 public bool child; 77 public bool child;
74 public uint circuitcode; 78 public uint circuitcode;
75 public string firstname; 79 public string firstname;
@@ -100,6 +104,7 @@ namespace OpenSim.Framework
100 InventoryFolder = cAgent.InventoryFolder.Guid; 104 InventoryFolder = cAgent.InventoryFolder.Guid;
101 BaseFolder = cAgent.BaseFolder.Guid; 105 BaseFolder = cAgent.BaseFolder.Guid;
102 CapsPath = cAgent.CapsPath; 106 CapsPath = cAgent.CapsPath;
107 ChildrenCapSeeds = cAgent.ChildrenCapSeeds;
103 } 108 }
104 } 109 }
105} 110}