Displaying 4 results from an estimated 4 matches for "ast_state_ring".
2005 Jun 02
0
chan_capi + mISDN + Fritz PTP
...m debian recompiled with a patch (see below)
- EuroISDN with Point-to-Point (ptp) mode (Austria)
- With Asterisk 1.0.7-BRIstuffed-0.2.0-RC7k from debian sarge
But am having some problems:
1) I needed to patch chan_capi.c from debian sarge (see below) to give
the new channel to asterisk in state AST_STATE_RING instead of
AST_STATE_DOWN. I just did the same for PTP as is done for PTM (point
to multipoint) in the code and it works (sort of) for me. If I leave
it in AST_STATE_DOWN, the call is never seen by asterisk and the
caller gets a failure indication.
Is this patch really necessary or a...
2004 Jun 01
1
Zap and call pickup -- it don't work.
...5:21:37 DEBUG[213006]: Updated conferencing on 24, with 0 conference
users
Now you'll see the "No call pickup possible" -- that comes from both
res_parking's ast_call_pickup() and also from chan_zap. Basically you get
that if the channel you're trying to pick up is NOT in AST_STATE_RING or
AST_STATE_RINGING.
I modified chan_zap.c so that "zap show channels" gives me the state of the
channel as well.
On to the main event: the CLI log when run as "asterisk -vvvvgc":
Asterisk Ready.
-- Starting simple switch on 'Zap/24-1'
-- Executing NoOp(&qu...
2006 Feb 23
2
chan_capi-cm-0.6.4
...;
i->mypipe = p;
if (i->isdnmode) {
- p->c = capi_new(i,AST_STATE_DOWN);
+ //RSC
+ p->c = capi_new(i,AST_STATE_RING);
i->state = CAPI_STATE_DID;
} else {
p->c = capi_new(i,AST_STATE_RING);
This patch immediately hands the call to asterisk instead of waiting for
further protocol information t...
2003 Feb 27
3
Intercom and Paging
What models?
Jeff Noxon (jeff-asterisk at planetfall.com) wrote*:
>
>I just purchased a bunch of Nortel Meridian POTS phones that support
>intercom on the 3rd pair. I intend to get it working with Asterisk.
>The phones support MWI, have a 3-line display, callerID, call waiting
>callerID, 2 lines...very nice.
>
>On Thu, Feb 27, 2003 at 01:07:19AM -1000, James H. Thompson