Do you know if it is possible to use more than one value un attributes
(attrs) in dial plan module?
As an example, instead of using:
modparam("dialplan", "attrs_pvar", "$var(variable1)")
===== 999999999 ----> attrs (value in database field)
xlog("L_NOTICE","variable 1 value is: $var(variable1) \n");
use something like:
modparam("dialplan", "attrs_pvar", "$var(variable1);
$var(variable2)")
===== 999999999; 888888888 ----> attrs (value in database field)
xlog("L_NOTICE","variable 1 value is: $var(variable1) \n");
xlog("L_NOTICE","variable 2 value is: $var(variable2) \n");
Thank you
Nelson.-
2017-09-05 17:38 GMT+02:00 Nelson Migliaro <eng.migliaro(a)gmail.com>om>:
Hello,
Do you know if its possible to