mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 01:06:30 +08:00
add fix for LLSDVoiceAccountResponse to work with freeswitch (from Rob
Smart)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user