diff options
author | MW | 2007-06-27 15:03:54 +0000 |
---|---|---|
committer | MW | 2007-06-27 15:03:54 +0000 |
commit | 223550b7e4f9eb534728e7763642a2ba6154be96 (patch) | |
tree | cd6ebbefd3c06487f40c3c30b344d6c2fccb1df5 /Common/OpenGrid.Framework.Communications.OGS1/GridCommsManager.cs | |
parent | * Begun reimplementing scripting. (diff) | |
download | opensim-SC-223550b7e4f9eb534728e7763642a2ba6154be96.zip opensim-SC-223550b7e4f9eb534728e7763642a2ba6154be96.tar.gz opensim-SC-223550b7e4f9eb534728e7763642a2ba6154be96.tar.bz2 opensim-SC-223550b7e4f9eb534728e7763642a2ba6154be96.tar.xz |
Some very Preliminary work on .net remoting for interregion comms.
a few more classes for CAPS LLSD types.
Diffstat (limited to '')
-rw-r--r-- | Common/OpenGrid.Framework.Communications.OGS1/GridCommsManager.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Common/OpenGrid.Framework.Communications.OGS1/GridCommsManager.cs b/Common/OpenGrid.Framework.Communications.OGS1/GridCommsManager.cs index 308e00f..563eaf7 100644 --- a/Common/OpenGrid.Framework.Communications.OGS1/GridCommsManager.cs +++ b/Common/OpenGrid.Framework.Communications.OGS1/GridCommsManager.cs | |||
@@ -7,10 +7,11 @@ namespace OpenGrid.Framework.Communications.OGS1 | |||
7 | { | 7 | { |
8 | public class GridCommsManager : CommunicationsManager | 8 | public class GridCommsManager : CommunicationsManager |
9 | { | 9 | { |
10 | private OGS1GridServices gridInterComms = new OGS1GridServices(); | ||
10 | public GridCommsManager(NetworkServersInfo serversInfo) :base(serversInfo) | 11 | public GridCommsManager(NetworkServersInfo serversInfo) :base(serversInfo) |
11 | { | 12 | { |
12 | GridServer = new OGS1GridServices(); | 13 | GridServer = gridInterComms; |
13 | InterRegion = new OGSInterSimComms(); | 14 | InterRegion = gridInterComms; |
14 | UserServer = new OGSUserServices(); | 15 | UserServer = new OGSUserServices(); |
15 | } | 16 | } |
16 | } | 17 | } |