mirror of
https://github.com/signalwire/freeswitch.git
synced 2026-07-24 05:02:10 +00:00
Fixed ability to send a string as user indications (DTMF) thanks Peter Olsson
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13049 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
@@ -687,12 +687,20 @@ void FSConnection::OnEstablished()
|
||||
OpalLocalConnection::OnEstablished();
|
||||
}
|
||||
|
||||
|
||||
PBoolean FSConnection::SendUserInputTone(char tone, unsigned duration)
|
||||
{
|
||||
switch_dtmf_t dtmf = { tone, duration };
|
||||
return switch_channel_queue_dtmf(m_fsChannel, &dtmf) == SWITCH_STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
PBoolean FSConnection::SendUserInputString(const PString & value)
|
||||
{
|
||||
return OpalConnection::SendUserInputString(value);
|
||||
}
|
||||
|
||||
|
||||
OpalMediaFormatList FSConnection::GetMediaFormats() const
|
||||
{
|
||||
if (m_switchMediaFormats.IsEmpty()) {
|
||||
|
||||
Reference in New Issue
Block a user