mirror of
https://github.com/opensim/opensim.git
synced 2026-08-09 02:36:00 +08:00
Start implementing Freeswitch in ROBUST
This commit is contained in:
@@ -33,19 +33,27 @@ using OpenSim.Framework;
|
||||
using OpenSim.Data;
|
||||
using OpenSim.Services.Interfaces;
|
||||
using OpenMetaverse;
|
||||
using System.Collections;
|
||||
|
||||
namespace OpenSim.Services.FreeswitchService
|
||||
{
|
||||
public class FreeswitchService : FreeswitchServiceBase, IFreeswitchService
|
||||
{
|
||||
//private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
||||
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
||||
|
||||
public FreeswitchService(IConfigSource config) : base(config)
|
||||
{
|
||||
// Perform initilialization here
|
||||
}
|
||||
|
||||
public Hashtable HandleDirectoryRequest(Hashtable requestBody)
|
||||
{
|
||||
return new Hashtable();
|
||||
}
|
||||
|
||||
// Implement IFreeswitchService here
|
||||
public Hashtable HandleDialplanRequest(Hashtable requestBody)
|
||||
{
|
||||
return new Hashtable();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user