diff options
author | opensim mirror account | 2010-11-22 07:30:05 -0800 |
---|---|---|
committer | opensim mirror account | 2010-11-22 07:30:05 -0800 |
commit | 7e862dfe5e6063b8edb161765dc4c0a23f3c9c43 (patch) | |
tree | 42b29b0605387f57983d5b00b5a2331560e5c97c | |
parent | Merge branch 'master' of /var/git/opensim/ (diff) | |
parent | Fox case on a method (diff) | |
download | opensim-SC_OLD-7e862dfe5e6063b8edb161765dc4c0a23f3c9c43.zip opensim-SC_OLD-7e862dfe5e6063b8edb161765dc4c0a23f3c9c43.tar.gz opensim-SC_OLD-7e862dfe5e6063b8edb161765dc4c0a23f3c9c43.tar.bz2 opensim-SC_OLD-7e862dfe5e6063b8edb161765dc4c0a23f3c9c43.tar.xz |
Merge branch 'master' of /var/git/opensim/
-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 |