diff options
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/OpenSimMain.cs | 3 |
1 files changed, 3 insertions, 0 deletions
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 | |||
56 | 56 | ||
57 | public class OpenSimMain : RegionServerBase, conscmd_callback | 57 | public class OpenSimMain : RegionServerBase, conscmd_callback |
58 | { | 58 | { |
59 | private CheckSumServer checkServer; | ||
59 | 60 | ||
60 | public OpenSimMain(bool sandBoxMode, bool startLoginServer, string physicsEngine, bool useConfigFile, bool silent, string configFile) | 61 | public OpenSimMain(bool sandBoxMode, bool startLoginServer, string physicsEngine, bool useConfigFile, bool silent, string configFile) |
61 | { | 62 | { |
@@ -99,6 +100,8 @@ namespace OpenSim | |||
99 | //Authenticate Session Handler | 100 | //Authenticate Session Handler |
100 | AuthenticateSessionsLocal authen = new AuthenticateSessionsLocal(); | 101 | AuthenticateSessionsLocal authen = new AuthenticateSessionsLocal(); |
101 | this.AuthenticateSessionsHandler = authen; | 102 | this.AuthenticateSessionsHandler = authen; |
103 | this.checkServer = new CheckSumServer(12036, m_console); | ||
104 | this.checkServer.ServerListener(); | ||
102 | } | 105 | } |
103 | else | 106 | else |
104 | { | 107 | { |