aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ThirdParty
diff options
context:
space:
mode:
authorMelanie Thielker2008-08-08 11:04:24 +0000
committerMelanie Thielker2008-08-08 11:04:24 +0000
commiteaff580abe080add12d294f20c11dd5efdbed288 (patch)
tree5fc382171e3c8d836db774ab8bb99272cd1af790 /ThirdParty
parent* All CheckRegion within an instance would use the same, global, bool for 'Av... (diff)
downloadopensim-SC_OLD-eaff580abe080add12d294f20c11dd5efdbed288.zip
opensim-SC_OLD-eaff580abe080add12d294f20c11dd5efdbed288.tar.gz
opensim-SC_OLD-eaff580abe080add12d294f20c11dd5efdbed288.tar.bz2
opensim-SC_OLD-eaff580abe080add12d294f20c11dd5efdbed288.tar.xz
Patch #9160
Refactor proxy encode/decode methods out of the PacketPool into their own class.
Diffstat (limited to 'ThirdParty')
-rw-r--r--ThirdParty/3Di/RegionProxy/RegionProxyPlugin.cs4
1 files changed, 2 insertions, 2 deletions
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
404 { 404 {
405 try 405 try
406 { 406 {
407 client = PacketPool.DecodeProxyMessage(buffer, ref numBytes); 407 client = ProxyCodec.DecodeProxyMessage(buffer, ref numBytes);
408 try 408 try
409 { 409 {
410 // This message comes from a region object, forward it to the its client 410 // This message comes from a region object, forward it to the its client
@@ -432,7 +432,7 @@ namespace OpenSim.ApplicationPlugins.RegionProxy
432 else 432 else
433 { 433 {
434 // This message comes from a client object, forward it to the the region(s) 434 // This message comes from a client object, forward it to the the region(s)
435 PacketPool.EncodeProxyMessage(buffer, ref numBytes, senderEP); 435 ProxyCodec.EncodeProxyMessage(buffer, ref numBytes, senderEP);
436 ProxyMap.RegionData rd = proxy_map.GetRegionData(sd.clientEP); 436 ProxyMap.RegionData rd = proxy_map.GetRegionData(sd.clientEP);
437 foreach (EndPoint region in rd.regions) 437 foreach (EndPoint region in rd.regions)
438 { 438 {