aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim.RegionServer/SimClient.cs
diff options
context:
space:
mode:
authorMW2007-05-17 13:23:53 +0000
committerMW2007-05-17 13:23:53 +0000
commit9c6f28bd4e2bbf59c3af1103ededb5801279600d (patch)
treef663624dd4df2a6ae22a21fc88a2d51c0171d1d9 /OpenSim.RegionServer/SimClient.cs
parent* more refactoring and error message (diff)
downloadopensim-SC_OLD-9c6f28bd4e2bbf59c3af1103ededb5801279600d.zip
opensim-SC_OLD-9c6f28bd4e2bbf59c3af1103ededb5801279600d.tar.gz
opensim-SC_OLD-9c6f28bd4e2bbf59c3af1103ededb5801279600d.tar.bz2
opensim-SC_OLD-9c6f28bd4e2bbf59c3af1103ededb5801279600d.tar.xz
Attempt to fix trunk which someone broke <looks innocent>
Diffstat (limited to '')
-rw-r--r--OpenSim.RegionServer/SimClient.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim.RegionServer/SimClient.cs b/OpenSim.RegionServer/SimClient.cs
index 0f107d9..980e1d8 100644
--- a/OpenSim.RegionServer/SimClient.cs
+++ b/OpenSim.RegionServer/SimClient.cs
@@ -85,6 +85,7 @@ namespace OpenSim
85 public bool m_sandboxMode; 85 public bool m_sandboxMode;
86 private int cachedtextureserial = 0; 86 private int cachedtextureserial = 0;
87 private RegionInfo m_regionData; 87 private RegionInfo m_regionData;
88 protected AuthenticateSessionsBase m_authenticateSessionsHandler;
88 89
89 protected static Dictionary<PacketType, PacketMethod> PacketHandlers = new Dictionary<PacketType, PacketMethod>(); //Global/static handlers for all clients 90 protected static Dictionary<PacketType, PacketMethod> PacketHandlers = new Dictionary<PacketType, PacketMethod>(); //Global/static handlers for all clients
90 91
@@ -98,7 +99,7 @@ namespace OpenSim
98 } 99 }
99 } 100 }
100 101
101 public SimClient(EndPoint remoteEP, UseCircuitCodePacket initialcirpack, World world, Dictionary<uint, SimClient> clientThreads, AssetCache assetCache, IGridServer gridServer, OpenSimNetworkHandler application, InventoryCache inventoryCache, bool sandboxMode, bool child, RegionInfo regionDat) 102 public SimClient(EndPoint remoteEP, UseCircuitCodePacket initialcirpack, World world, Dictionary<uint, SimClient> clientThreads, AssetCache assetCache, IGridServer gridServer, OpenSimNetworkHandler application, InventoryCache inventoryCache, bool sandboxMode, bool child, RegionInfo regionDat, AuthenticateSessionsBase authenSessions)
102 { 103 {
103 m_world = world; 104 m_world = world;
104 m_clientThreads = clientThreads; 105 m_clientThreads = clientThreads;
@@ -109,6 +110,7 @@ namespace OpenSim
109 m_sandboxMode = sandboxMode; 110 m_sandboxMode = sandboxMode;
110 m_child = child; 111 m_child = child;
111 m_regionData = regionDat; 112 m_regionData = regionDat;
113 m_authenticateSessionsHandler = authenSessions;
112 114
113 OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.LOW, "OpenSimClient.cs - Started up new client thread to handle incoming request"); 115 OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.LOW, "OpenSimClient.cs - Started up new client thread to handle incoming request");
114 cirpack = initialcirpack; 116 cirpack = initialcirpack;