aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications
diff options
context:
space:
mode:
authordiva2009-06-14 23:00:23 +0000
committerdiva2009-06-14 23:00:23 +0000
commit380f59d0ffc3a1ec8cc20972b2475faf76f341fb (patch)
tree0ead6998ce29f9c885f6a943ee95f69a8f1f910f /OpenSim/Region/Communications
parentFormatting cleanup. (diff)
downloadopensim-SC_OLD-380f59d0ffc3a1ec8cc20972b2475faf76f341fb.zip
opensim-SC_OLD-380f59d0ffc3a1ec8cc20972b2475faf76f341fb.tar.gz
opensim-SC_OLD-380f59d0ffc3a1ec8cc20972b2475faf76f341fb.tar.bz2
opensim-SC_OLD-380f59d0ffc3a1ec8cc20972b2475faf76f341fb.tar.xz
Factoring out "land_data" / RequestLandData that was hanging off of IGridServices, erroneously. Not sure when this is used, but now it is implemented in the new model of service connectors. Hopefully it works.
Diffstat (limited to 'OpenSim/Region/Communications')
-rw-r--r--OpenSim/Region/Communications/OGS1/OGS1GridServices.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs
index f82a6a1..a526bb2 100644
--- a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs
+++ b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs
@@ -94,7 +94,9 @@ namespace OpenSim.Region.Communications.OGS1
94 // httpServer.AddXmlRPCHandler("expect_user", ExpectUser); 94 // httpServer.AddXmlRPCHandler("expect_user", ExpectUser);
95 // httpServer.AddXmlRPCHandler("logoff_user", LogOffUser); 95 // httpServer.AddXmlRPCHandler("logoff_user", LogOffUser);
96 httpServer.AddXmlRPCHandler("check", PingCheckReply); 96 httpServer.AddXmlRPCHandler("check", PingCheckReply);
97 httpServer.AddXmlRPCHandler("land_data", LandData); 97
98 // Retired into the new service connectors, 6/14/09
99 //httpServer.AddXmlRPCHandler("land_data", LandData);
98 100
99 } 101 }
100 102