Re: [SR-Users] using http_async_query

2019-10-05 Thread David Villasmil
I ended up storing the http_req_iq = query in an htable, then retrieving the request on the http reply route. Thanks all On Fri, 4 Oct 2019 at 19:00, David Villasmil wrote: > Hello guys, > > So, i'm using http_async_query to send out requests. It may happen that > the request times out, in

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