Re: [SR-Users] storing vars in htable

2019-10-05 Thread David Villasmil
Perfect, thanks Alex! On Sat, 5 Oct 2019 at 03:20, Alex Balashov wrote: > Kamailio has inconsistent interpolation behaviour; static string > assignment values are not interpolated. > > So, this won’t work: > > $var(x) = “$var(y)abc”; > > But this will: > > $var(x) = $var(y) + “abc”; > > Also

Re: [SR-Users] storing vars in htable

2019-10-04 Thread Alex Balashov
Kamailio has inconsistent interpolation behaviour; static string assignment values are not interpolated. So, this won’t work: $var(x) = “$var(y)abc”; But this will: $var(x) = $var(y) + “abc”; Also see: