diff options
author | mingchen | 2007-06-09 21:04:13 +0000 |
---|---|---|
committer | mingchen | 2007-06-09 21:04:13 +0000 |
commit | fa8f143aec69e36ee90fb34e2f144733b66ca951 (patch) | |
tree | 9442f049f83b4ea1cb89f9205aa07fd375c84594 /Common/OpenGrid.Framework.Communications/RegionServerCommsLocal.cs | |
parent | Number of small changes. (diff) | |
download | opensim-SC_OLD-fa8f143aec69e36ee90fb34e2f144733b66ca951.zip opensim-SC_OLD-fa8f143aec69e36ee90fb34e2f144733b66ca951.tar.gz opensim-SC_OLD-fa8f143aec69e36ee90fb34e2f144733b66ca951.tar.bz2 opensim-SC_OLD-fa8f143aec69e36ee90fb34e2f144733b66ca951.tar.xz |
*Reorganized RegionServerCommsManager for OGS and local support
Diffstat (limited to 'Common/OpenGrid.Framework.Communications/RegionServerCommsLocal.cs')
-rw-r--r-- | Common/OpenGrid.Framework.Communications/RegionServerCommsLocal.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Common/OpenGrid.Framework.Communications/RegionServerCommsLocal.cs b/Common/OpenGrid.Framework.Communications/RegionServerCommsLocal.cs new file mode 100644 index 0000000..0743cbf --- /dev/null +++ b/Common/OpenGrid.Framework.Communications/RegionServerCommsLocal.cs | |||
@@ -0,0 +1,20 @@ | |||
1 | using System; | ||
2 | using System.Collections; | ||
3 | using System.Collections.Generic; | ||
4 | using System.Text; | ||
5 | using libsecondlife; | ||
6 | using OpenSim.Framework; | ||
7 | using OpenSim.Framework.Interfaces; | ||
8 | using OpenSim.Framework.Types; | ||
9 | |||
10 | namespace OpenGrid.Framework.Communications | ||
11 | { | ||
12 | public class RegionServerCommsLocal : RegionServerCommsManager | ||
13 | { | ||
14 | public RegionServerCommsLocal() | ||
15 | { | ||
16 | userServer = new UserServer.UserCommsManagerLocal(); //Local User Server | ||
17 | gridServer = new GridServer.GridCommsManagerLocal(); //Locl Grid Server | ||
18 | } | ||
19 | } | ||
20 | } | ||