Allow yes/no and on/off aliases for DTMF request modes once/none.

git-svn-id: http://voip.null.ro/svn/yate@4376 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
paulc 2011-05-13 16:55:47 +00:00
parent b8e2817f13
commit f148d81c30
1 changed files with 4 additions and 0 deletions

View File

@ -354,6 +354,10 @@ static const TokenDict s_dict_rqnt[] = {
{ "none", MGCPSpan::RqntNone },
{ "once", MGCPSpan::RqntOnce },
{ "more", MGCPSpan::RqntMore },
{ "no", MGCPSpan::RqntNone },
{ "yes", MGCPSpan::RqntOnce },
{ "off", MGCPSpan::RqntNone },
{ "on", MGCPSpan::RqntOnce },
{ 0, 0 }
};