diff options
author | mingchen | 2007-06-28 17:03:09 +0000 |
---|---|---|
committer | mingchen | 2007-06-28 17:03:09 +0000 |
commit | d3363bbc28442d70ea8c196e47e6c734f4c01a92 (patch) | |
tree | 52107ce7a8a2e9b42baefffed741443bc1cab8d3 /OpenSim/Region/Communications/OGS1/CommunicationsOGS1.cs | |
parent | *Master User is now set up (diff) | |
download | opensim-SC_OLD-d3363bbc28442d70ea8c196e47e6c734f4c01a92.zip opensim-SC_OLD-d3363bbc28442d70ea8c196e47e6c734f4c01a92.tar.gz opensim-SC_OLD-d3363bbc28442d70ea8c196e47e6c734f4c01a92.tar.bz2 opensim-SC_OLD-d3363bbc28442d70ea8c196e47e6c734f4c01a92.tar.xz |
*Renamed GridCommsManager to CommunicationsOGS1 to match CommunicationsLocal -- its sandbox mode counterpart
Diffstat (limited to 'OpenSim/Region/Communications/OGS1/CommunicationsOGS1.cs')
-rw-r--r-- | OpenSim/Region/Communications/OGS1/CommunicationsOGS1.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/OpenSim/Region/Communications/OGS1/CommunicationsOGS1.cs b/OpenSim/Region/Communications/OGS1/CommunicationsOGS1.cs new file mode 100644 index 0000000..f2b3b92 --- /dev/null +++ b/OpenSim/Region/Communications/OGS1/CommunicationsOGS1.cs | |||
@@ -0,0 +1,18 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | using OpenSim.Framework.Types; | ||
5 | using OpenSim.Framework.Communications; | ||
6 | namespace OpenSim.Region.Communications.OGS1 | ||
7 | { | ||
8 | public class CommunicationsOGS1 : CommunicationsManager | ||
9 | { | ||
10 | private OGS1GridServices gridInterComms = new OGS1GridServices(); | ||
11 | public CommunicationsOGS1(NetworkServersInfo serversInfo) :base(serversInfo) | ||
12 | { | ||
13 | GridServer = gridInterComms; | ||
14 | InterRegion = gridInterComms; | ||
15 | UserServer = new OGSUserServices(this); | ||
16 | } | ||
17 | } | ||
18 | } | ||