diff options
author | Adam Frisby | 2008-05-01 16:41:01 +0000 |
---|---|---|
committer | Adam Frisby | 2008-05-01 16:41:01 +0000 |
commit | fc6c4dc399587f6f920d3f0759b1bd7a8b9b4ac8 (patch) | |
tree | 90a4799fa43e3761ffbe669d1d87837933d8db53 /ThirdParty/3Di/RegionProxy/RegionProxyPlugin.cs | |
parent | * Deletes my EventReader ScriptRewriter. It isn't required to rewrite the sc... (diff) | |
download | opensim-SC_OLD-fc6c4dc399587f6f920d3f0759b1bd7a8b9b4ac8.zip opensim-SC_OLD-fc6c4dc399587f6f920d3f0759b1bd7a8b9b4ac8.tar.gz opensim-SC_OLD-fc6c4dc399587f6f920d3f0759b1bd7a8b9b4ac8.tar.bz2 opensim-SC_OLD-fc6c4dc399587f6f920d3f0759b1bd7a8b9b4ac8.tar.xz |
* Cleaning code still.
Diffstat (limited to 'ThirdParty/3Di/RegionProxy/RegionProxyPlugin.cs')
-rw-r--r-- | ThirdParty/3Di/RegionProxy/RegionProxyPlugin.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ThirdParty/3Di/RegionProxy/RegionProxyPlugin.cs b/ThirdParty/3Di/RegionProxy/RegionProxyPlugin.cs index eaafe6c..2c86fd4 100644 --- a/ThirdParty/3Di/RegionProxy/RegionProxyPlugin.cs +++ b/ThirdParty/3Di/RegionProxy/RegionProxyPlugin.cs | |||
@@ -75,7 +75,7 @@ namespace OpenSim.ApplicationPlugins.RegionProxy | |||
75 | string proxyURL = openSim.ConfigSource.Configs["Network"].GetString("proxy_url", ""); | 75 | string proxyURL = openSim.ConfigSource.Configs["Network"].GetString("proxy_url", ""); |
76 | if (proxyURL.Length == 0) return; | 76 | if (proxyURL.Length == 0) return; |
77 | 77 | ||
78 | uint port = (uint) Int32.Parse(proxyURL.Split(new char[] {':'})[2]); | 78 | uint port = (uint) Int32.Parse(proxyURL.Split(new[] {':'})[2]); |
79 | command_server = new BaseHttpServer(port); | 79 | command_server = new BaseHttpServer(port); |
80 | command_server.Start(); | 80 | command_server.Start(); |
81 | command_server.AddXmlRPCHandler("AddPort", AddPort); | 81 | command_server.AddXmlRPCHandler("AddPort", AddPort); |
@@ -223,7 +223,7 @@ namespace OpenSim.ApplicationPlugins.RegionProxy | |||
223 | { | 223 | { |
224 | m_log = log; | 224 | m_log = log; |
225 | running = false; | 225 | running = false; |
226 | receivedData = new AsyncCallback(OnReceivedData); | 226 | receivedData = OnReceivedData; |
227 | } | 227 | } |
228 | 228 | ||
229 | public void BlockClientMessages(string regionUrl, int regionPort) | 229 | public void BlockClientMessages(string regionUrl, int regionPort) |
@@ -452,7 +452,7 @@ namespace OpenSim.ApplicationPlugins.RegionProxy | |||
452 | 452 | ||
453 | protected class ProxyMap | 453 | protected class ProxyMap |
454 | { | 454 | { |
455 | private Dictionary<EndPoint, RegionData> map; | 455 | private readonly Dictionary<EndPoint, RegionData> map; |
456 | 456 | ||
457 | public ProxyMap() | 457 | public ProxyMap() |
458 | { | 458 | { |
@@ -494,7 +494,7 @@ namespace OpenSim.ApplicationPlugins.RegionProxy | |||
494 | 494 | ||
495 | public class RegionData | 495 | public class RegionData |
496 | { | 496 | { |
497 | public bool isBlocked = false; | 497 | public bool isBlocked; |
498 | public List<EndPoint> regions = new List<EndPoint>(); | 498 | public List<EndPoint> regions = new List<EndPoint>(); |
499 | public Queue storedMessages = new Queue(); | 499 | public Queue storedMessages = new Queue(); |
500 | } | 500 | } |