Further integration of the DTMF code.

This commit is contained in:
Jonathan Naylor 2017-08-15 21:09:20 +01:00
parent 7421ff415d
commit 356250df07
3 changed files with 38 additions and 32 deletions

View file

@ -307,13 +307,12 @@ WX_STATUS CDTMF::validate() const
return WXS_CONNECT;
}
unsigned int CDTMF::getReflector()
std::string CDTMF::getReflector()
{
std::string command = m_command;
reset();
// XXX FIXME
return 0U;
return command.substr(1U);
}
void CDTMF::reset()