[asterisk-users] CHANNEL arguments documentation?
Richard Mudgett
rmudgett at digium.com
Fri Aug 24 15:24:59 CDT 2012
> Using
>
>
> exten => h,n,set(CDR(llp)=${CHANNEL(rtpqos,audio,local_lostpackets)})
>
> gives me
>
>
> [Aug 24 12:08:10] WARNING[12087]: sip/dialplan_functions.c:221
> sip_acf_channel_read: Unrecognized argument
> 'rtpqos,audio,local_lostpackets' to CHANNEL
>
> [Aug 24 12:08:10] WARNING[12087]: func_channel.c:393
> func_channel_read: Unknown or unavailable item requested:
> 'rtpqos,audio,local_lostpackets'
>
> According to
> http://lists.digium.com/pipermail/asterisk-users/2011-September/266075.html
> the variable names have changed, however I couldn't find an updated
> documentation or understand from the mail reply, what I have to
> change in the example above.
> So, can somebody please tell me where to get an updated documentation
> or how to fix my problem? I am using Asterisk 1.8.10.1.
>
This is what the chan_sip code will accept in the third parameter position:
"txcount",
"rxcount",
"txjitter",
"rxjitter",
"remote_maxjitter",
"remote_minjitter",
"remote_normdevjitter",
"remote_stdevjitter",
"local_maxjitter",
"local_minjitter",
"local_normdevjitter",
"local_stdevjitter",
"txploss",
"rxploss",
"remote_maxrxploss",
"remote_minrxploss",
"remote_normdevrxploss",
"remote_stdevrxploss",
"local_maxrxploss",
"local_minrxploss",
"local_normdevrxploss",
"local_stdevrxploss",
"rtt",
"maxrtt",
"minrtt",
"normdevrtt",
"stdevrtt",
"local_ssrc",
"remote_ssrc",
It also will accept nothing or "all".
Richard
More information about the asterisk-users
mailing list