CommunicationsOGS1.cs 609 B

123456789101112131415161718
  1. using OpenSim.Framework.Communications;
  2. using OpenSim.Framework.Types;
  3. using OpenSim.Framework.Servers;
  4. namespace OpenSim.Region.Communications.OGS1
  5. {
  6. public class CommunicationsOGS1 : CommunicationsManager
  7. {
  8. public CommunicationsOGS1(NetworkServersInfo serversInfo, BaseHttpServer httpServer ) :base(serversInfo, httpServer)
  9. {
  10. OGS1GridServices gridInterComms = new OGS1GridServices(serversInfo, httpServer);
  11. GridServer = gridInterComms;
  12. InterRegion = gridInterComms;
  13. UserServer = new OGS1UserServices(this);
  14. }
  15. }
  16. }