From 37f98a65d4b82302819a5fc6761876fae275ef8a Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Fri, 17 Apr 2009 20:00:35 +0000 Subject: [PATCH] add fix for LLSDVoiceAccountResponse to work with freeswitch (from Rob Smart) --- .../Capabilities/LLSDVoiceAccountResponse.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/OpenSim/Framework/Communications/Capabilities/LLSDVoiceAccountResponse.cs b/OpenSim/Framework/Communications/Capabilities/LLSDVoiceAccountResponse.cs index 6cd5ee3a85..3735c776e4 100644 --- a/OpenSim/Framework/Communications/Capabilities/LLSDVoiceAccountResponse.cs +++ b/OpenSim/Framework/Communications/Capabilities/LLSDVoiceAccountResponse.cs @@ -33,6 +33,8 @@ namespace OpenSim.Framework.Communications.Capabilities { public string username; public string password; + public string voice_sip_uri_hostname; + public string voice_account_server_name; public LLSDVoiceAccountResponse() { @@ -43,5 +45,13 @@ namespace OpenSim.Framework.Communications.Capabilities username = user; password = pass; } + + public LLSDVoiceAccountResponse(string user, string pass, string sipUriHost, string accountServer) + { + username = user; + password = pass; + voice_sip_uri_hostname = sipUriHost; + voice_account_server_name = accountServer; + } } } \ No newline at end of file