Ing. Angel Gomez Garcia
2003-Oct-23 00:39 UTC
[Asterisk-Users] Call pickup (*8) on SIP devices.
Hello. I have this issue, when I pickup a call that is ringing in a SIP Phone, it keeps ringing. There is bug #116 that mention something about these, but it does not seem to be resolved , at least, not yet. Anybody else has seen it behavior ? Thank's.
Ing. Angel Gomez Garcia wrote:> > Hello. > > I have this issue, when I pickup a call that is ringing in a SIP > Phone, it keeps ringing. > There is bug #116 that mention something about these, but it does > not seem to be resolved , at least, not yet. > Anybody else has seen it behavior ? > > Thank's. >Everyone.. :) Its a known issue.. Later..
Here are some ideas for anyone with some extra time on there hands. SIP phones on call pickup either use a special REGISTER or you can place a call with the magic extension and have the switch hang up on you and immediately call you back. With the second option, you could dial "*8", Asterisk could check to see if this was a SIP channel and if so, hangup on the call and somehow add that channel to the current list of ringing phones. From the knowledge I have of Asterisk which basically is configuration info only I'm not sure if this is a clean approach with the current architecture. In the commercial SIP world, a forking proxy would be used and the pickup phone's contact would be added to the ringing phones contact list for that call only. The proxy would fork an additional INVITE to the pickup phone and both phones would ring. That way the pickup phone or the original destination phone could answer the call. Maybe these ideas will spark some coding. :) WipeOut wrote:>> Ing. Angel Gomez Garcia wrote: >> > > >>>> WipeOut wrote: >>>> >> >> >>>>>> Ing. Angel Gomez Garcia wrote: >>>>>> >>> >>> >>>>>>>> >>>>>>>> Hello. >>>>>>>> >>>>>>>> I have this issue, when I pickup a call that is ringing in a SIP >>>>>>>> Phone, it keeps ringing. >>>>>>>> There is bug #116 that mention something about these, but it does >>>>>>>> not seem to be resolved , at least, not yet. >>>>>>>> Anybody else has seen it behavior ? >>>>>>>> >>>>>>>> Thank's. >>>>>>>> >>>> >>>> >>>>>> Everyone.. >>>>>> >>>>>> Its a known issue.. >>>>>> >>>>>> Later.. >>>>>> >>> >>> >>>> OOhh >>>> >>>> Any known workaround ? >>>> >>>> >> >> >> Not that I know of.. >> >> >
Yes Ing. Angel Gomez Garcia wrote:> > Hello. > > I have this issue, when I pickup a call that is ringing in a SIP > Phone, it keeps ringing. > There is bug #116 that mention something about these, but it does > not seem to be resolved , at least, not yet. > Anybody else has seen it behavior ? > > Thank's. > > _______________________________________________ > Asterisk-Users mailing list > Asterisk-Users@lists.digium.com > http://lists.digium.com/mailman/listinfo/asterisk-users
Bisker, Scott (7805)
2003-Oct-24 11:48 UTC
[Asterisk-Users] Call pickup (*8) on SIP devices.
Just submitted a patch for this on asterisk-dev. Quick fix add the following line above line 5022 in chan_sip.c ast_setstate(c,AST_STATE_DOWN); Should look like this when you are done. } else { 5021 ast_mutex_unlock(&p->lock); 5022 ast_setstate(c, AST_STATE_DOWN); 5023 ast_hangup(c); 5024 ast_mutex_lock(&p->lock); c = NULL; -Scott -----Original Message----- From: James Sizemore [mailto:james@deny.org] Sent: Thursday, October 23, 2003 2:04 PM To: asterisk-users@lists.digium.com Subject: Re: [Asterisk-Users] Call pickup (*8) on SIP devices. Yes Ing. Angel Gomez Garcia wrote:> > Hello. > > I have this issue, when I pickup a call that is ringing in a SIP > Phone, it keeps ringing. > There is bug #116 that mention something about these, but it does > not seem to be resolved , at least, not yet. > Anybody else has seen it behavior ? > > Thank's. > > _______________________________________________ > Asterisk-Users mailing list > Asterisk-Users@lists.digium.com > http://lists.digium.com/mailman/listinfo/asterisk-users_______________________________________________ Asterisk-Users mailing list Asterisk-Users@lists.digium.com http://lists.digium.com/mailman/listinfo/asterisk-users