aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/CommunicationsManager.cs
diff options
context:
space:
mode:
authormingchen2007-06-28 16:17:20 +0000
committermingchen2007-06-28 16:17:20 +0000
commit108d89f89436556c8f4662197903c374db943f7d (patch)
tree4a089c43c54bdef28c0883fd9aaef464c840c3ac /OpenSim/Framework/Communications/CommunicationsManager.cs
parentApplied ScenePresence movement patch from Darok. (diff)
downloadopensim-SC_OLD-108d89f89436556c8f4662197903c374db943f7d.zip
opensim-SC_OLD-108d89f89436556c8f4662197903c374db943f7d.tar.gz
opensim-SC_OLD-108d89f89436556c8f4662197903c374db943f7d.tar.bz2
opensim-SC_OLD-108d89f89436556c8f4662197903c374db943f7d.tar.xz
*Master User is now set up
*Added support for getting user profile information from remote grid server (untested) *Updated prebuild.xml
Diffstat (limited to 'OpenSim/Framework/Communications/CommunicationsManager.cs')
-rw-r--r--OpenSim/Framework/Communications/CommunicationsManager.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Framework/Communications/CommunicationsManager.cs b/OpenSim/Framework/Communications/CommunicationsManager.cs
index 74d12d2..69b5da6 100644
--- a/OpenSim/Framework/Communications/CommunicationsManager.cs
+++ b/OpenSim/Framework/Communications/CommunicationsManager.cs
@@ -43,9 +43,10 @@ namespace OpenSim.Framework.Communications
43 public IGridServices GridServer; 43 public IGridServices GridServer;
44 public IInterRegionCommunications InterRegion; 44 public IInterRegionCommunications InterRegion;
45 45
46 public NetworkServersInfo ServersInfo;
46 public CommunicationsManager(NetworkServersInfo serversInfo) 47 public CommunicationsManager(NetworkServersInfo serversInfo)
47 { 48 {
48 49 ServersInfo = serversInfo;
49 } 50 }
50 } 51 }
51} 52}