diff options
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>(); |