aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/Communications/Local/LocalInterregionComms.cs
diff options
context:
space:
mode:
authordiva2008-12-29 22:44:04 +0000
committerdiva2008-12-29 22:44:04 +0000
commit3a6b27befbc6119929b7e5dc67456195720c3093 (patch)
tree489def867dae8cdc7da5014953aec72ed79bea37 /OpenSim/Region/Environment/Modules/Communications/Local/LocalInterregionComms.cs
parentFinal part for implementing SendChildAgentDataUpdate with modules. This is th... (diff)
downloadopensim-SC_OLD-3a6b27befbc6119929b7e5dc67456195720c3093.zip
opensim-SC_OLD-3a6b27befbc6119929b7e5dc67456195720c3093.tar.gz
opensim-SC_OLD-3a6b27befbc6119929b7e5dc67456195720c3093.tar.bz2
opensim-SC_OLD-3a6b27befbc6119929b7e5dc67456195720c3093.tar.xz
Changing the default Comms module to be RESTComms, in case none is specified in OpenSim.ini. RESTComms is a super-set of LocalComms. Calls to local regions do no use REST, they use internal function calls.
Diffstat (limited to 'OpenSim/Region/Environment/Modules/Communications/Local/LocalInterregionComms.cs')
-rw-r--r--OpenSim/Region/Environment/Modules/Communications/Local/LocalInterregionComms.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Modules/Communications/Local/LocalInterregionComms.cs b/OpenSim/Region/Environment/Modules/Communications/Local/LocalInterregionComms.cs
index 9661387..6812e6d 100644
--- a/OpenSim/Region/Environment/Modules/Communications/Local/LocalInterregionComms.cs
+++ b/OpenSim/Region/Environment/Modules/Communications/Local/LocalInterregionComms.cs
@@ -65,7 +65,7 @@ namespace OpenSim.Region.Environment.Modules.Communications.Local
65 IConfig startupConfig = config.Configs["Communications"]; 65 IConfig startupConfig = config.Configs["Communications"];
66 66
67 if ((startupConfig == null) || 67 if ((startupConfig == null) ||
68 (startupConfig != null) && (startupConfig.GetString("InterregionComms", "LocalComms") == "LocalComms")) 68 (startupConfig != null) && (startupConfig.GetString("InterregionComms", "RESTCommms") == "LocalComms"))
69 m_enabled = true; 69 m_enabled = true;
70 } 70 }
71 71