Hello,
I am sure that this is very easy to do, but I have been googling and I can't find a way.
Having a Reason header, for instance :
Reason: SIP;cause=Some_Cause;text="Some_text"
How can I get the value of "Some_Cause"? I need to compare it to some specific numeric values...
Thanks in advance,
Luis
Hello!
Did you try Parameters List Transformations? https://www.kamailio.org/wiki/cookbooks/devel/transformations#parameters_lis...
пт, 8 мая 2020 г. в 19:32, Luis Rojas G. luis.rojas@sixbell.com:
Hello,
That is one of the parts I read, but to transform something first I would need something to transform.
I don't know how to get the cause from the header. I was reading this :
https://kamailio.org/docs/modules/5.3.x/modules/textopsx.html#textopsx.sel.h...
It gives some nice examples, like :
$b = @hf_value.p_associated_uri; $rr = @hf_value.route.uri; $prt = @hf_value2.authorization.integrity_protected;
What about @hf_value.reason.cause or @hf_value2.reason.cause ? They don't even compile.
0(3848) ERROR: <core> [core/select.c:299]: resolve_select(): Unable to resolve select 'cause' at level 2 0(3848) ERROR: <core> [core/rvalue.c:2893]: fix_rval(): Unable to resolve select in cfg at line: 209 col: 42 0(3848) ERROR: <core> [core/select.c:434]: log_select(): select( 0(3848) ERROR: <core> [core/select.c:439]: log_select(): hf_value2, 0(3848) ERROR: <core> [core/select.c:439]: log_select(): , 0(3848) ERROR: <core> [core/select.c:439]: log_select(): cause, 0(3848) ERROR: <core> [core/select.c:442]: log_select(): )
Luis
On 5/8/20 2:42 PM, Denys Pozniak wrote:
Try this one: $(hdr(Reason){param.value,cause})
пт, 8 мая 2020 г. в 21:57, Luis Rojas G. luis.rojas@sixbell.com:
On 5/8/20 4:21 PM, Denys Pozniak wrote:
Try this one: $(hdr(Reason){param.value,cause})
Wonderful!!
Thanks a lot,
Luis