From 497ab5d7abec3c644a6340c1c64a2557dbade0ef Mon Sep 17 00:00:00 2001 From: lbsa71 Date: Mon, 16 Jul 2007 23:25:35 +0000 Subject: * RegionApplicationBase restructuring now complete * Still has some weird bug in SimpleApp though. --- OpenSim/Region/ClientStack/UDPServer.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'OpenSim/Region/ClientStack/UDPServer.cs') diff --git a/OpenSim/Region/ClientStack/UDPServer.cs b/OpenSim/Region/ClientStack/UDPServer.cs index 781f96a..ac17720 100644 --- a/OpenSim/Region/ClientStack/UDPServer.cs +++ b/OpenSim/Region/ClientStack/UDPServer.cs @@ -56,7 +56,7 @@ namespace OpenSim.Region.ClientStack protected AssetCache m_assetCache; protected InventoryCache m_inventoryCache; protected LogBase m_log; - protected AuthenticateSessionsBase m_authenticateSessionsClass; + protected AgentCircuitManager m_authenticateSessionsClass; public PacketServer PacketServer { @@ -83,7 +83,7 @@ namespace OpenSim.Region.ClientStack { } - public UDPServer(int port, AssetCache assetCache, InventoryCache inventoryCache, LogBase console, AuthenticateSessionsBase authenticateClass) + public UDPServer(int port, AssetCache assetCache, InventoryCache inventoryCache, LogBase console, AgentCircuitManager authenticateClass) { listenPort = port; this.m_assetCache = assetCache; @@ -91,7 +91,6 @@ namespace OpenSim.Region.ClientStack this.m_log = console; this.m_authenticateSessionsClass = authenticateClass; this.CreatePacketServer(); - } protected virtual void CreatePacketServer() -- cgit v1.1