<div dir="ltr"><div><font color="#000000" face="monospace"><span style="font-size:12px;white-space:pre">it seems it work better in this way...</span></font></div><div><font color="#000000" face="monospace"><span style="font-size:12px;white-space:pre"><br></span></font></div><div><font color="#000000" face="monospace"><span style="font-size:12px;white-space:pre">chan = ast_channel_alloc(1, state, NULL, NULL, "", ext, ctx, 0, c, "TAPI/%d", (c + 1)); </span></font> <br></div><div><br></div><div>I don't know so well asterisk programming... please let me know if it seems correct to you!</div><div><br></div><div>Eddi</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Nov 11, 2014 at 6:11 PM, Eddi De Pieri <span dir="ltr"><<a href="mailto:eddi@depieri.net" target="_blank">eddi@depieri.net</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><span class=""><div>On Tue, Nov 11, 2014 at 4:24 PM, Luka Perkov <span dir="ltr"><<a href="mailto:luka@openwrt.org" target="_blank">luka@openwrt.org</a>></span> wrote:<br></div></span><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">Hi Eddi,<br><span><br>
</span><span class="">I don't remember if that worked on owsip. But asterisk should support<br>
both channels.<br>
<br>
What about TAPI/0? I am unsure if we started naming the channels from 0<br>
or 1...<br>
<span><font color="#888888"><br></font></span></span></blockquote><div><div>/* on asterisk user's side, we're using port 1-2.    </div><div> * Here in non normal human's world, we begin        </div><div> * counting at 0.                                    </div><div> */                                                  </div></div><div><br></div><div> my doubt is:</div><div><br></div><div>chan = ast_channel_alloc(1, state, NULL, NULL, "", ext, ctx, 0, c, "TAPI/%s", "1");      <br></div><div><br></div><div>If I understand correctly this is like a printf... so it seems it will always map c to TAPI/1</div><div><br></div><div>I think it should be:</div><div><br></div><div><div>chan = ast_channel_alloc(1, state, NULL, NULL, "", ext, ctx, 0, c, "TAPI/%s", sprintf("%d", (c+1)));<br></div></div><div><br></div><div>Let me try...</div><span class="HOEnZb"><font color="#888888"><div><br></div><div>Eddi</div><div><br></div></font></span></div></div></div>
</blockquote></div><br></div>