提交 07c2480e authored 作者: Giovanni Maruzzelli's avatar Giovanni Maruzzelli

skypiax: fixed transferred call to skype user busy in another call: was…

skypiax: fixed transferred call to skype user busy in another call: was transferring using the interface name, not the skype_user. Fixed as per Jira:   MODSKYPIAX-28

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@12790 d0543943-73ff-0310-b7d9-9358b9ac24b2
上级 73f6f1ae
...@@ -245,11 +245,11 @@ int skypiax_signaling_read(private_t * tech_pvt) ...@@ -245,11 +245,11 @@ int skypiax_signaling_read(private_t * tech_pvt)
if (available_skypiax_interface) { if (available_skypiax_interface) {
/* there is a skypiax interface idle, let's transfer the call to it */ /* there is a skypiax interface idle, let's transfer the call to it */
DEBUGA_SKYPE DEBUGA_SKYPE
("Let's transfer the skype_call %s to %s interface, because we are already in a skypiax call(%s)\n", ("Let's transfer the skype_call %s to %s interface (with skype_user: %s), because we are already in a skypiax call(%s)\n",
SKYPIAX_P_LOG, tech_pvt->skype_call_id, SKYPIAX_P_LOG, tech_pvt->skype_call_id,
available_skypiax_interface->name, id); available_skypiax_interface->name, available_skypiax_interface->skype_user, id);
sprintf(msg_to_skype, "ALTER CALL %s TRANSFER %s", id, sprintf(msg_to_skype, "ALTER CALL %s TRANSFER %s", id,
available_skypiax_interface->name); available_skypiax_interface->skype_user);
} else { } else {
/* no skypiax interfaces idle, let's refuse the call */ /* no skypiax interfaces idle, let's refuse the call */
DEBUGA_SKYPE DEBUGA_SKYPE
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论