diff options
author | Melanie | 2010-11-22 14:32:51 +0100 |
---|---|---|
committer | Melanie | 2010-11-22 14:27:45 +0000 |
commit | d2aebbe0669481c9f416c78dd40ca6007da09f02 (patch) | |
tree | 42b29b0605387f57983d5b00b5a2331560e5c97c /OpenSim/Region/OptionalModules/Avatar | |
parent | Change FS Voice module to a shared module to avoid gratuitious server handler (diff) | |
download | opensim-SC_OLD-d2aebbe0669481c9f416c78dd40ca6007da09f02.zip opensim-SC_OLD-d2aebbe0669481c9f416c78dd40ca6007da09f02.tar.gz opensim-SC_OLD-d2aebbe0669481c9f416c78dd40ca6007da09f02.tar.bz2 opensim-SC_OLD-d2aebbe0669481c9f416c78dd40ca6007da09f02.tar.xz |
Fox case on a method
Diffstat (limited to 'OpenSim/Region/OptionalModules/Avatar')
-rw-r--r-- | OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchVoiceModule.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchVoiceModule.cs b/OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchVoiceModule.cs index 9a17233..a583cca 100644 --- a/OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchVoiceModule.cs +++ b/OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchVoiceModule.cs | |||
@@ -603,7 +603,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Voice.FreeSwitchVoice | |||
603 | response["str_response_string"] = string.Empty; | 603 | response["str_response_string"] = string.Empty; |
604 | response["content-type"] = "text/xml"; | 604 | response["content-type"] = "text/xml"; |
605 | 605 | ||
606 | Hashtable requestBody = parseRequestBody((string)request["body"]); | 606 | Hashtable requestBody = ParseRequestBody((string)request["body"]); |
607 | 607 | ||
608 | if (!requestBody.ContainsKey("auth_token")) | 608 | if (!requestBody.ContainsKey("auth_token")) |
609 | return response; | 609 | return response; |
@@ -675,7 +675,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Voice.FreeSwitchVoice | |||
675 | string uri = (string)request["uri"]; | 675 | string uri = (string)request["uri"]; |
676 | string contenttype = (string)request["content-type"]; | 676 | string contenttype = (string)request["content-type"]; |
677 | 677 | ||
678 | Hashtable requestBody = parseRequestBody((string)request["body"]); | 678 | Hashtable requestBody = ParseRequestBody((string)request["body"]); |
679 | 679 | ||
680 | //string pwd = (string) requestBody["pwd"]; | 680 | //string pwd = (string) requestBody["pwd"]; |
681 | string userid = (string) requestBody["userid"]; | 681 | string userid = (string) requestBody["userid"]; |
@@ -719,7 +719,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Voice.FreeSwitchVoice | |||
719 | return response; | 719 | return response; |
720 | } | 720 | } |
721 | 721 | ||
722 | public Hashtable parseRequestBody(string body) | 722 | public Hashtable ParseRequestBody(string body) |
723 | { | 723 | { |
724 | Hashtable bodyParams = new Hashtable(); | 724 | Hashtable bodyParams = new Hashtable(); |
725 | // split string | 725 | // split string |