From eaff580abe080add12d294f20c11dd5efdbed288 Mon Sep 17 00:00:00 2001 From: Melanie Thielker Date: Fri, 8 Aug 2008 11:04:24 +0000 Subject: Patch #9160 Refactor proxy encode/decode methods out of the PacketPool into their own class. --- ThirdParty/3Di/RegionProxy/RegionProxyPlugin.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ThirdParty/3Di/RegionProxy/RegionProxyPlugin.cs') diff --git a/ThirdParty/3Di/RegionProxy/RegionProxyPlugin.cs b/ThirdParty/3Di/RegionProxy/RegionProxyPlugin.cs index a3108f6..7eefcf5 100644 --- a/ThirdParty/3Di/RegionProxy/RegionProxyPlugin.cs +++ b/ThirdParty/3Di/RegionProxy/RegionProxyPlugin.cs @@ -404,7 +404,7 @@ namespace OpenSim.ApplicationPlugins.RegionProxy { try { - client = PacketPool.DecodeProxyMessage(buffer, ref numBytes); + client = ProxyCodec.DecodeProxyMessage(buffer, ref numBytes); try { // This message comes from a region object, forward it to the its client @@ -432,7 +432,7 @@ namespace OpenSim.ApplicationPlugins.RegionProxy else { // This message comes from a client object, forward it to the the region(s) - PacketPool.EncodeProxyMessage(buffer, ref numBytes, senderEP); + ProxyCodec.EncodeProxyMessage(buffer, ref numBytes, senderEP); ProxyMap.RegionData rd = proxy_map.GetRegionData(sd.clientEP); foreach (EndPoint region in rd.regions) { -- cgit v1.1