aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorSean Dague2009-04-17 20:00:35 +0000
committerSean Dague2009-04-17 20:00:35 +0000
commit37f98a65d4b82302819a5fc6761876fae275ef8a (patch)
tree71f34f8edd62579cbe89bcd9feac5d97cba04f07
parentexperimental freeswitch code, imported from Rob Smart's tree (diff)
downloadopensim-SC_OLD-37f98a65d4b82302819a5fc6761876fae275ef8a.zip
opensim-SC_OLD-37f98a65d4b82302819a5fc6761876fae275ef8a.tar.gz
opensim-SC_OLD-37f98a65d4b82302819a5fc6761876fae275ef8a.tar.bz2
opensim-SC_OLD-37f98a65d4b82302819a5fc6761876fae275ef8a.tar.xz
add fix for LLSDVoiceAccountResponse to work with freeswitch (from Rob
Smart)
-rw-r--r--OpenSim/Framework/Communications/Capabilities/LLSDVoiceAccountResponse.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/Capabilities/LLSDVoiceAccountResponse.cs b/OpenSim/Framework/Communications/Capabilities/LLSDVoiceAccountResponse.cs
index 6cd5ee3..3735c77 100644
--- a/OpenSim/Framework/Communications/Capabilities/LLSDVoiceAccountResponse.cs
+++ b/OpenSim/Framework/Communications/Capabilities/LLSDVoiceAccountResponse.cs
@@ -33,6 +33,8 @@ namespace OpenSim.Framework.Communications.Capabilities
33 { 33 {
34 public string username; 34 public string username;
35 public string password; 35 public string password;
36 public string voice_sip_uri_hostname;
37 public string voice_account_server_name;
36 38
37 public LLSDVoiceAccountResponse() 39 public LLSDVoiceAccountResponse()
38 { 40 {
@@ -43,5 +45,13 @@ namespace OpenSim.Framework.Communications.Capabilities
43 username = user; 45 username = user;
44 password = pass; 46 password = pass;
45 } 47 }
48
49 public LLSDVoiceAccountResponse(string user, string pass, string sipUriHost, string accountServer)
50 {
51 username = user;
52 password = pass;
53 voice_sip_uri_hostname = sipUriHost;
54 voice_account_server_name = accountServer;
55 }
46 } 56 }
47} \ No newline at end of file 57} \ No newline at end of file