aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-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