From 42c45a87167a7aeb55d5c813a1b1cb8e0cc8a6dc Mon Sep 17 00:00:00 2001 From: MW Date: Sat, 19 May 2007 13:28:31 +0000 Subject: Added a CheckSumServer (handles template checksum , so there is no longer the need to connect to LL userserver). Currently onlt active in sandbox mode (someone simple needs to add "CheckSumServer checkserver = new CheckSumServer(12036, m_console);" to the grid userserver). Then when starting up the SL client add " -user localhost" (or whatever the IP address that the sim or grid userserver is at) to the command line --- OpenSim/OpenSimMain.cs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'OpenSim') diff --git a/OpenSim/OpenSimMain.cs b/OpenSim/OpenSimMain.cs index 97261af..30fed30 100644 --- a/OpenSim/OpenSimMain.cs +++ b/OpenSim/OpenSimMain.cs @@ -56,6 +56,7 @@ namespace OpenSim public class OpenSimMain : RegionServerBase, conscmd_callback { + private CheckSumServer checkServer; public OpenSimMain(bool sandBoxMode, bool startLoginServer, string physicsEngine, bool useConfigFile, bool silent, string configFile) { @@ -99,6 +100,8 @@ namespace OpenSim //Authenticate Session Handler AuthenticateSessionsLocal authen = new AuthenticateSessionsLocal(); this.AuthenticateSessionsHandler = authen; + this.checkServer = new CheckSumServer(12036, m_console); + this.checkServer.ServerListener(); } else { -- cgit v1.1