aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications/OGS1/GridCommsManager.cs
diff options
context:
space:
mode:
authormingchen2007-06-27 16:55:27 +0000
committermingchen2007-06-27 16:55:27 +0000
commite392e222a83ee04ee25c00e26dfad5f47ffa69b8 (patch)
tree03e48283f634b86cc8773d88b42ab849ac999895 /OpenSim/Region/Communications/OGS1/GridCommsManager.cs
parent*Some more restructuring/fixing -- should compile, but high chance I forgot t... (diff)
downloadopensim-SC_OLD-e392e222a83ee04ee25c00e26dfad5f47ffa69b8.zip
opensim-SC_OLD-e392e222a83ee04ee25c00e26dfad5f47ffa69b8.tar.gz
opensim-SC_OLD-e392e222a83ee04ee25c00e26dfad5f47ffa69b8.tar.bz2
opensim-SC_OLD-e392e222a83ee04ee25c00e26dfad5f47ffa69b8.tar.xz
*Added some missing files I forgot to add...OpenSim.sln should compile now
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Communications/OGS1/GridCommsManager.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/OpenSim/Region/Communications/OGS1/GridCommsManager.cs b/OpenSim/Region/Communications/OGS1/GridCommsManager.cs
new file mode 100644
index 0000000..77848fa
--- /dev/null
+++ b/OpenSim/Region/Communications/OGS1/GridCommsManager.cs
@@ -0,0 +1,18 @@
1using System;
2using System.Collections.Generic;
3using System.Text;
4using OpenSim.Framework.Types;
5using OpenSim.Framework.Communications;
6namespace OpenSim.Region.Communications.OGS1
7{
8 public class GridCommsManager : CommunicationsManager
9 {
10 private OGS1GridServices gridInterComms = new OGS1GridServices();
11 public GridCommsManager(NetworkServersInfo serversInfo) :base(serversInfo)
12 {
13 GridServer = gridInterComms;
14 InterRegion = gridInterComms;
15 UserServer = new OGSUserServices();
16 }
17 }
18}