[asterisk-dev] [Code Review] dial by name in chan_dahdi

rmudgett at digium.com rmudgett at digium.com
Thu May 6 12:03:14 CDT 2010


-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviewboard.asterisk.org/r/535/#review1976
-----------------------------------------------------------



/trunk/channels/chan_dahdi.c
<https://reviewboard.asterisk.org/r/535/#comment4209>

    Minor.  This code does not need to be split into two lines.



/trunk/channels/chan_dahdi.c
<https://reviewboard.asterisk.org/r/535/#comment4210>

    There is some ambiguity introduced here.  The i<span>- is prefixed to the original dial string by call completion processing for ISDN channels.
    
    If the original dial string is:
    DAHDI/pool!19/5551212
    CC processing for an ISDN channel will prefix i<span>- onto the recall dial string:
    DAHDI/i1-pool!19/5551212
    Now the dial string is invalid!
    
    I do think it is a bad idea to specify channels on an ISDN span, but it is a possibility and should be taken into account.
    
    A solution would be to make the i<span>- prefix only valid on the group dialing format since the channel specific and new subdir format specify the DAHDI channel to use.
    The my_pri_make_cc_dialstring() function will need to be made smarter about when to prefix i<span>-.
    Add this logic to my_pri_make_cc_dialstring():
    If '!' is not in the group string and it begins with a digit then the prefix needs to be added.
    
    I had tried to make my_pri_make_cc_dialstring() as ignorant of the dialing formats as possible.  Unfortunately, that is no longer possible with the addition of this feature.


- rmudgett


On 2010-05-06 03:38:59, Tzafrir Cohen wrote:
> 
> -----------------------------------------------------------
> This is an automatically generated e-mail. To reply, visit:
> https://reviewboard.asterisk.org/r/535/
> -----------------------------------------------------------
> 
> (Updated 2010-05-06 03:38:59)
> 
> 
> Review request for Asterisk Developers.
> 
> 
> Summary
> -------
> 
> Currently a name of a channel in chan_dahdi must (with some exception of trunk-groups syntax) rely on DAHDI channel numbers. Sadly channel numbers depend on the specific order of registration. Changing that seems to be quite difficult.
> 
> Thus we try to use the original ope-by-device-file (rather than indert open through /dev/dahdi/channel), and allow files to reside in subdirectories of /dev/dahdi .
> 
> Specifically, the file name must still be a number (to allow using the same ranges syntax). However it should be preceded with the string '<dirname>!' .
> 
> For instance we have: /dev/dahdi/work/1 and /dev/dahdi/work/2 that are symlinks to /dev/dahdi/9 and /dev/dahdi/10 (DAHDI channels 9 and 10), I can refer to them in chan_dahdi.conf as:
> 
>   channel => work!1
>   channel => work!2
> 
> And likewise can dial through them using:
> 
>   Dial(DAHDI/work!1/123456)
> 
> See also the http://svn.asterisk.org/dahdi/linux/team/tzafrir/sysfs .
> 
> 
> Current status: 
> 
> * Tested to basically work. 
> 
> TODO:
> * Adapt better to Asterisk coding style.
> * Use '!' in subdir (in chan_dahdi.conf) as well?
> * Can the original path be exposed to the dialplan?
>   The equivalent of:
>   Set(DAHDI_CHAN=${CUT(-,${CHANNEL}))}
> 
> 
> Diffs
> -----
> 
>   /trunk/channels/chan_dahdi.c 260802 
>   /trunk/configs/chan_dahdi.conf.sample 260802 
> 
> Diff: https://reviewboard.asterisk.org/r/535/diff
> 
> 
> Testing
> -------
> 
> 
> Thanks,
> 
> Tzafrir
> 
>




More information about the asterisk-dev mailing list