diff options
Diffstat (limited to 'OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchVoiceModule.cs')
-rw-r--r-- | OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchVoiceModule.cs | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchVoiceModule.cs b/OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchVoiceModule.cs index 5fa7efd..f9cb1c4 100644 --- a/OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchVoiceModule.cs +++ b/OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchVoiceModule.cs | |||
@@ -95,7 +95,6 @@ namespace OpenSim.Region.OptionalModules.Avatar.Voice.FreeSwitchVoice | |||
95 | // private static IPEndPoint m_FreeSwitchServiceIP; | 95 | // private static IPEndPoint m_FreeSwitchServiceIP; |
96 | private int m_freeSwitchServicePort; | 96 | private int m_freeSwitchServicePort; |
97 | private string m_openSimWellKnownHTTPAddress; | 97 | private string m_openSimWellKnownHTTPAddress; |
98 | private string m_freeSwitchContext; | ||
99 | 98 | ||
100 | private FreeSwitchDirectory m_FreeSwitchDirectory; | 99 | private FreeSwitchDirectory m_FreeSwitchDirectory; |
101 | private FreeSwitchDialplan m_FreeSwitchDialplan; | 100 | private FreeSwitchDialplan m_FreeSwitchDialplan; |
@@ -152,7 +151,6 @@ namespace OpenSim.Region.OptionalModules.Avatar.Voice.FreeSwitchVoice | |||
152 | m_freeSwitchDefaultTimeout = m_config.GetInt("freeswitch_default_timeout", 5000); | 151 | m_freeSwitchDefaultTimeout = m_config.GetInt("freeswitch_default_timeout", 5000); |
153 | // m_freeSwitchSubscribeRetry = m_config.GetInt("freeswitch_subscribe_retry", 120); | 152 | // m_freeSwitchSubscribeRetry = m_config.GetInt("freeswitch_subscribe_retry", 120); |
154 | m_freeSwitchUrlResetPassword = m_config.GetString("freeswitch_password_reset_url", String.Empty); | 153 | m_freeSwitchUrlResetPassword = m_config.GetString("freeswitch_password_reset_url", String.Empty); |
155 | m_freeSwitchContext = m_config.GetString("freeswitch_context", "public"); | ||
156 | 154 | ||
157 | if (String.IsNullOrEmpty(m_freeSwitchServerUser) || | 155 | if (String.IsNullOrEmpty(m_freeSwitchServerUser) || |
158 | String.IsNullOrEmpty(m_freeSwitchServerPass) || | 156 | String.IsNullOrEmpty(m_freeSwitchServerPass) || |
@@ -574,7 +572,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Voice.FreeSwitchVoice | |||
574 | "<App.NoBottomLogo>false</App.NoBottomLogo>\r\n"+ | 572 | "<App.NoBottomLogo>false</App.NoBottomLogo>\r\n"+ |
575 | "</VCConfiguration>", | 573 | "</VCConfiguration>", |
576 | m_freeSwitchRealm, m_freeSwitchSIPProxy, m_freeSwitchAttemptUseSTUN, | 574 | m_freeSwitchRealm, m_freeSwitchSIPProxy, m_freeSwitchAttemptUseSTUN, |
577 | m_freeSwitchEchoServer, m_freeSwitchEchoPort, | 575 | m_freeSwitchSTUNServer, m_freeSwitchEchoServer, m_freeSwitchEchoPort, |
578 | m_freeSwitchDefaultWellKnownIP, m_freeSwitchDefaultTimeout, | 576 | m_freeSwitchDefaultWellKnownIP, m_freeSwitchDefaultTimeout, |
579 | m_freeSwitchUrlResetPassword, ""); | 577 | m_freeSwitchUrlResetPassword, ""); |
580 | 578 | ||
@@ -730,9 +728,9 @@ namespace OpenSim.Region.OptionalModules.Avatar.Voice.FreeSwitchVoice | |||
730 | string section = (string) requestBody["section"]; | 728 | string section = (string) requestBody["section"]; |
731 | 729 | ||
732 | if (section == "directory") | 730 | if (section == "directory") |
733 | response = m_FreeSwitchDirectory.HandleDirectoryRequest(m_freeSwitchContext, m_freeSwitchRealm, requestBody); | 731 | response = m_FreeSwitchDirectory.HandleDirectoryRequest(requestBody); |
734 | else if (section == "dialplan") | 732 | else if (section == "dialplan") |
735 | response = m_FreeSwitchDialplan.HandleDialplanRequest(m_freeSwitchContext, m_freeSwitchRealm, requestBody); | 733 | response = m_FreeSwitchDialplan.HandleDialplanRequest(requestBody); |
736 | else | 734 | else |
737 | m_log.WarnFormat("[FreeSwitchVoice]: section was {0}", section); | 735 | m_log.WarnFormat("[FreeSwitchVoice]: section was {0}", section); |
738 | 736 | ||