diff options
author | lbsa71 | 2007-07-16 23:25:35 +0000 |
---|---|---|
committer | lbsa71 | 2007-07-16 23:25:35 +0000 |
commit | 497ab5d7abec3c644a6340c1c64a2557dbade0ef (patch) | |
tree | 6ff6d849c724db80116205c3bbad6b704c73126d /OpenSim/Region/ClientStack/UDPServer.cs | |
parent | * Trimmed a few hundred warnings off SimpleApp. (diff) | |
download | opensim-SC_OLD-497ab5d7abec3c644a6340c1c64a2557dbade0ef.zip opensim-SC_OLD-497ab5d7abec3c644a6340c1c64a2557dbade0ef.tar.gz opensim-SC_OLD-497ab5d7abec3c644a6340c1c64a2557dbade0ef.tar.bz2 opensim-SC_OLD-497ab5d7abec3c644a6340c1c64a2557dbade0ef.tar.xz |
* RegionApplicationBase restructuring now complete
* Still has some weird bug in SimpleApp though.
Diffstat (limited to 'OpenSim/Region/ClientStack/UDPServer.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/UDPServer.cs | 5 |
1 files changed, 2 insertions, 3 deletions
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 | |||
56 | protected AssetCache m_assetCache; | 56 | protected AssetCache m_assetCache; |
57 | protected InventoryCache m_inventoryCache; | 57 | protected InventoryCache m_inventoryCache; |
58 | protected LogBase m_log; | 58 | protected LogBase m_log; |
59 | protected AuthenticateSessionsBase m_authenticateSessionsClass; | 59 | protected AgentCircuitManager m_authenticateSessionsClass; |
60 | 60 | ||
61 | public PacketServer PacketServer | 61 | public PacketServer PacketServer |
62 | { | 62 | { |
@@ -83,7 +83,7 @@ namespace OpenSim.Region.ClientStack | |||
83 | { | 83 | { |
84 | } | 84 | } |
85 | 85 | ||
86 | public UDPServer(int port, AssetCache assetCache, InventoryCache inventoryCache, LogBase console, AuthenticateSessionsBase authenticateClass) | 86 | public UDPServer(int port, AssetCache assetCache, InventoryCache inventoryCache, LogBase console, AgentCircuitManager authenticateClass) |
87 | { | 87 | { |
88 | listenPort = port; | 88 | listenPort = port; |
89 | this.m_assetCache = assetCache; | 89 | this.m_assetCache = assetCache; |
@@ -91,7 +91,6 @@ namespace OpenSim.Region.ClientStack | |||
91 | this.m_log = console; | 91 | this.m_log = console; |
92 | this.m_authenticateSessionsClass = authenticateClass; | 92 | this.m_authenticateSessionsClass = authenticateClass; |
93 | this.CreatePacketServer(); | 93 | this.CreatePacketServer(); |
94 | |||
95 | } | 94 | } |
96 | 95 | ||
97 | protected virtual void CreatePacketServer() | 96 | protected virtual void CreatePacketServer() |