add fix for LLSDVoiceAccountResponse to work with freeswitch (from Rob
Smart)0.6.5-rc1
parent
7f30be17d0
commit
37f98a65d4
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue