diff options
Gird mode in sugilite should now work in so far as you should be able to login and move between regions in the same instance. Moving to regions in a different instance of opensim still needs implementing (working on it now).
Also trying to look at the map in grid mode will crash the server.
Diffstat (limited to 'OpenSim/Region/Communications/OGS1/CommunicationsOGS1.cs')
-rw-r--r-- | OpenSim/Region/Communications/OGS1/CommunicationsOGS1.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Region/Communications/OGS1/CommunicationsOGS1.cs b/OpenSim/Region/Communications/OGS1/CommunicationsOGS1.cs index 1118726..cc05845 100644 --- a/OpenSim/Region/Communications/OGS1/CommunicationsOGS1.cs +++ b/OpenSim/Region/Communications/OGS1/CommunicationsOGS1.cs | |||
@@ -1,14 +1,15 @@ | |||
1 | using OpenSim.Framework.Communications; | 1 | using OpenSim.Framework.Communications; |
2 | using OpenSim.Framework.Types; | 2 | using OpenSim.Framework.Types; |
3 | using OpenSim.Framework.Servers; | ||
3 | 4 | ||
4 | namespace OpenSim.Region.Communications.OGS1 | 5 | namespace OpenSim.Region.Communications.OGS1 |
5 | { | 6 | { |
6 | public class CommunicationsOGS1 : CommunicationsManager | 7 | public class CommunicationsOGS1 : CommunicationsManager |
7 | { | 8 | { |
8 | 9 | ||
9 | public CommunicationsOGS1(NetworkServersInfo serversInfo) :base(serversInfo) | 10 | public CommunicationsOGS1(NetworkServersInfo serversInfo, BaseHttpServer httpServer ) :base(serversInfo, httpServer) |
10 | { | 11 | { |
11 | OGS1GridServices gridInterComms = new OGS1GridServices(serversInfo); | 12 | OGS1GridServices gridInterComms = new OGS1GridServices(serversInfo, httpServer); |
12 | GridServer = gridInterComms; | 13 | GridServer = gridInterComms; |
13 | InterRegion = gridInterComms; | 14 | InterRegion = gridInterComms; |
14 | UserServer = new OGS1UserServices(this); | 15 | UserServer = new OGS1UserServices(this); |