Displaying 5 results from an estimated 5 matches for "ext_".
Did you mean:
ext
2019 Oct 15
4
clarification on gosub, macros and AEL
>>> Nobody has any information or opinions on any of this?
Personally, I don't think MACROS are going anywhere any time soon, so I have not bothered looking into a substitution.
As for ael; I've never used it.
Doug
2015 Nov 12
1
[PATCH] Unification of ext_(write/read)_adv
...ar **_devname)
return devfd;
}
-static int btrfs_read_adv(int devfd)
-{
- if (xpread(devfd, syslinux_adv, 2 * ADV_SIZE, BTRFS_ADV_OFFSET)
- != 2 * ADV_SIZE)
- return -1;
-
- return syslinux_validate_adv(syslinux_adv) ? 1 : 0;
-}
-
-static inline int xfs_read_adv(int devfd)
+static int ext_read_adv_offset(int devfd, off_t offset)
{
const size_t adv_size = 2 * ADV_SIZE;
- if (xpread(devfd, syslinux_adv, adv_size, boot_image_len) != adv_size)
- return -1;
+ if (xpread(devfd, syslinux_adv, adv_size, offset) != adv_size)
+ return -1;
return syslinux_validate_adv(...
2007 Aug 29
2
understanding queues
Hello,
I feel like I understand how the dial plan works pretty well with one
exception. It seems like queues are using the stdexen macro to ring the
agents/extensions. Is this normal? Is there anyway to configure this
differently?
I realize this is a newbie question, but I have searched google/archives
and haven't been able to find the answer.
Thanks,
Elliot
--------------
2007 Mar 08
2
Queue announcing hold sequence instead of hold time
...,Answer()
exten => s,n,Wait(1)
exten => s,n,Playback(welcome-fxqueue)
exten => s,n,Goto(5210,1)
; FxQueue
exten => 5210,1,Noop()
exten => 5210,n,Ringing()
exten => 5210,n,Wait(2)
exten => 5210,n,Queue(FxQueue|tH)
exten => 5210,n,Hangup()
exten => _6XXX,1,macro(ccexten,${EXT_${EXTEN}})
[macro-ccexten]
exten => s,1,Set(EXT=${ARG1})
exten => s,2,GotoIf([$:{EXT}]?4:3)
exten => s,3,Goto(i,1)
exten => s,4,Dial(${EXT},10,tT)
exten => i,1,Playback(pbx-invalid)
--
Drew Gibson
Systems Administrator
OANDA Corporation
416-593-6767 x322
www.oanda.com
2020 Feb 04
0
Always Be Conferencing v16e - pure AEL-based dial plan solution
...D()} PAUL FOR DEFENDING THE 6TH AMENDMENT. GO ${RAND()} ${EPOCH}!)};
n=${LEN(${m})}/2;
o=${RAND(0,${n})};
p=${m:${o}:16};
Set(FILE(${fp}/${fn})=${p});
}
return;
}
/* The "marco" macro is used to update phone GPS position. */
macro pngnpbx-abc-marco(ext_,lat_,lon_,elv_) {
&pngnpbx-abc-key-read("");
if( ${LEN(${abckey})} == 0 ) {
// Must have a key to encrypt the data with.
// Key must be 16 characters. Or less.
// TODO: generate one automatically (hmmmm)
return;
}
if( ${LEN(${ext_})} ==...