diff options
author | gareth | 2007-03-14 03:34:49 +0000 |
---|---|---|
committer | gareth | 2007-03-14 03:34:49 +0000 |
commit | 7a54467bed7e1da77f7e1a45ee01dfc709b5608d (patch) | |
tree | e0b575e4e87c4b127556597798186b7040d94b2a /src/LocalServers/LocalGridServers/LocalGrid.cs | |
parent | Merged ogs-cs into trunk (diff) | |
download | opensim-SC-7a54467bed7e1da77f7e1a45ee01dfc709b5608d.zip opensim-SC-7a54467bed7e1da77f7e1a45ee01dfc709b5608d.tar.gz opensim-SC-7a54467bed7e1da77f7e1a45ee01dfc709b5608d.tar.bz2 opensim-SC-7a54467bed7e1da77f7e1a45ee01dfc709b5608d.tar.xz |
merged new OpenSim from branches/ogs-cs
Diffstat (limited to 'src/LocalServers/LocalGridServers/LocalGrid.cs')
-rw-r--r-- | src/LocalServers/LocalGridServers/LocalGrid.cs | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/LocalServers/LocalGridServers/LocalGrid.cs b/src/LocalServers/LocalGridServers/LocalGrid.cs index 5adce27..86a68d5 100644 --- a/src/LocalServers/LocalGridServers/LocalGrid.cs +++ b/src/LocalServers/LocalGridServers/LocalGrid.cs | |||
@@ -113,7 +113,14 @@ namespace LocalGridServers | |||
113 | public class LocalGridServer :IGridServer | 113 | public class LocalGridServer :IGridServer |
114 | { | 114 | { |
115 | public List<Login> Sessions = new List<Login>(); | 115 | public List<Login> Sessions = new List<Login>(); |
116 | 116 | ||
117 | private Dictionary<uint, agentcircuitdata> AgentCircuits = new Dictionary<uint, agentcircuitdata>(); | ||
118 | |||
119 | public Dictionary<uint, agentcircuitdata> agentcircuits { | ||
120 | get {return agentcircuits;} | ||
121 | set {agentcircuits=value;} | ||
122 | } | ||
123 | |||
117 | public LocalGridServer() | 124 | public LocalGridServer() |
118 | { | 125 | { |
119 | Sessions = new List<Login>(); | 126 | Sessions = new List<Login>(); |