search for: call_uuid

Displaying 2 results from an estimated 2 matches for "call_uuid".

Did you mean: call_id
2008 Oct 30
1
1.4.22 vs 1.4.21.2 - IAX2 regression ?
...f [userX] type=user transfer=no host=dynamic secret=<whatever> context=the-context disallow=all allow=alaw allow=ulaw [systemB] type=peer qualify=200 transfer=no host=<ip-here> disallow=all allow=gsm System A extensions.conf: [the-context] exten => _.,1,Wait(1) exten => _.,n,Set(CALL_UUID=${EXTEN}) exten => _.,n,Set(RESULT_STRING="${ODBC_CALL_DATA_4_UUID(${CALL_UUID})}") exten => _.,n,Set(ARRAY(NAME,ACCT,IAXUSER,NUM)="${RESULT_STRING}") exten => _.,n,Set(DONT_CARE="${ODBC_REMOVE_CALL_4_UUID(${CALL_UUID})}") exten => _.,n,Set(CALLERID(name)=$...
2010 Feb 26
0
How can we pickup a call that is not going to a real extension?
...We have a situation where a call comes in, users are notified via an external process (curl request to web service), and we can't answer the call until a callee can call in and pickup the call. How can we implement this functionality? We tried using : [caller-inbound-leg] ; code to send the CALL_UUID information to users. exten => _[+0-9a-zA-Z*#_].,n(r203),Dial(LOCAL/${CALL_UUID}@inbound-wait-loop,,r) ; wait for call pickup from callee's inbound leg [inbound-wait-loop] exten => _[+0-9a-zA-Z*#_].,1,Wait(30) [callee-inbound-leg] ; code to figure out the CALL_UUID used fo...