mirror of
https://github.com/opensim/opensim.git
synced 2026-08-13 05:05:43 +08:00
This commit changes the way the new server works. There is no longer a server
exe for each function, rather each function is a connector and the server ini loads them. If you like your multiple processes, use -inifile with the server. Otherwise, you get one server process that serves all configured funcions, see example .ini. The new exe is OpenSim.Server.exe. Clean your bin, loads of names have changed!
This commit is contained in:
@@ -30,14 +30,16 @@ using Nini.Config;
|
||||
using OpenSim.Server.Base;
|
||||
using OpenSim.Services.Interfaces;
|
||||
using OpenSim.Framework.Servers.HttpServer;
|
||||
using OpenSim.Server.Handlers.Base;
|
||||
|
||||
namespace OpenSim.Server.Handlers.Asset
|
||||
{
|
||||
public class AssetServiceConnector
|
||||
public class AssetServiceConnector : ServiceConnector
|
||||
{
|
||||
private IAssetService m_AssetService;
|
||||
|
||||
public AssetServiceConnector(IConfigSource config, IHttpServer server)
|
||||
public AssetServiceConnector(IConfigSource config, IHttpServer server) :
|
||||
base(config, server)
|
||||
{
|
||||
IConfig serverConfig = config.Configs["AssetService"];
|
||||
if (serverConfig == null)
|
||||
|
||||
Reference in New Issue
Block a user