Displaying 1 result from an estimated 1 matches for "setdnid".
Did you mean:
set_id
2015 Aug 24
3
PJSIP add
...sk logs (verbose 999). In the SIP case, I see it.
Does the function Set(PJSIP_HEADER(add, ..... not transfer over to the call when the Queue function is called?
Am I calling the Set(PJSIP_Header(add portion incorrectly? Or is this a problem with the Asterisk PJSIP support?
chan_sip...
[macro-MY-SetDNID]
exten => s,1,Verbose(X-MY-DNID:${MY_DNID})
exten => s,1,SIPAddHeader(X-MY-DNID:${MY_DNID})
same => n,Queue(${ARG2})
pjsip....
[macro-MY-SetDNID]
exten => s,1,Verbose(X-MY-DNID:${MY_DNID})
same => n,Set(PJSIP_HEADER(add,X-MY-DNID)=${MY_DNID})
same => n,Queue(${ARG2})
Have a grea...