문제

I am trying to redirect a call using Asterisk.NET Library. But it doesn't work as I expected. For Eg: If A calls B and I transfer it to C, Source A will be disconnected, and B and C will be connected. This is my code snippet for transferring the call.

            RedirectAction ra = new RedirectAction(sip_channel_of_B, "internal", 1000 , 1);
            ManagerResponse rr = manager.SendAction(ra);
도움이 되었습니까?

해결책

I solved it myself by changing the channel. RedirectAction expects the source channel; not the destination channel....

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top