aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs
diff options
context:
space:
mode:
authorJeff Ames2008-06-04 09:59:27 +0000
committerJeff Ames2008-06-04 09:59:27 +0000
commit4ec4e16c809cf86a63b736d2b7b6ad7291595a5f (patch)
treecfa896ef9057228171e2ee39c4807060101ba90b /OpenSim/Region/Communications/OGS1/OGS1GridServices.cs
parent* If a ThreadAbortException reaches AuthUser() then let it pass through unmol... (diff)
downloadopensim-SC_OLD-4ec4e16c809cf86a63b736d2b7b6ad7291595a5f.zip
opensim-SC_OLD-4ec4e16c809cf86a63b736d2b7b6ad7291595a5f.tar.gz
opensim-SC_OLD-4ec4e16c809cf86a63b736d2b7b6ad7291595a5f.tar.bz2
opensim-SC_OLD-4ec4e16c809cf86a63b736d2b7b6ad7291595a5f.tar.xz
Formatting cleanup, minor refactoring, svn properties.
Diffstat (limited to 'OpenSim/Region/Communications/OGS1/OGS1GridServices.cs')
-rw-r--r--OpenSim/Region/Communications/OGS1/OGS1GridServices.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs
index 0daabc5..85ab99c 100644
--- a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs
+++ b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs
@@ -624,14 +624,14 @@ namespace OpenSim.Region.Communications.OGS1
624 LLUUID agentID = LLUUID.Zero; 624 LLUUID agentID = LLUUID.Zero;
625 LLUUID RegionSecret = LLUUID.Zero; 625 LLUUID RegionSecret = LLUUID.Zero;
626 Helpers.TryParse((string)requestData["agent_id"], out agentID); 626 Helpers.TryParse((string)requestData["agent_id"], out agentID);
627 Helpers.TryParse((string)requestData["region_secret"], out RegionSecret); 627 Helpers.TryParse((string)requestData["region_secret"], out RegionSecret);
628 628
629 ulong regionHandle = Convert.ToUInt64((string)requestData["regionhandle"]); 629 ulong regionHandle = Convert.ToUInt64((string)requestData["regionhandle"]);
630 630
631 631
632 m_localBackend.TriggerLogOffUser(regionHandle, agentID, RegionSecret,message); 632 m_localBackend.TriggerLogOffUser(regionHandle, agentID, RegionSecret,message);
633 633
634 634
635 635
636 return new XmlRpcResponse(); 636 return new XmlRpcResponse();
637 } 637 }
@@ -647,7 +647,7 @@ namespace OpenSim.Region.Communications.OGS1
647 try 647 try
648 { 648 {
649 ch = new TcpChannel((int)NetworkServersInfo.RemotingListenerPort); 649 ch = new TcpChannel((int)NetworkServersInfo.RemotingListenerPort);
650 ChannelServices.RegisterChannel(ch, false); // Disabled security as Mono doesnt support this. 650 ChannelServices.RegisterChannel(ch, false); // Disabled security as Mono doesn't support this.
651 } 651 }
652 catch (Exception ex) 652 catch (Exception ex)
653 { 653 {