skypiax: don't warns about TRANSFERRING and TRANSFERRED states

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@12524 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Giovanni Maruzzelli 2009-03-08 15:31:45 +00:00
parent 53d9f13c43
commit 601a187096
1 changed files with 4 additions and 0 deletions

View File

@ -341,6 +341,10 @@ int skypiax_signaling_read(private_t * tech_pvt)
/* we're here because were us that refused an incoming call */
DEBUGA_SKYPE("we REFUSED skype_call %s\n", SKYPIAX_P_LOG, id);
}
} else if (!strcasecmp(value, "TRANSFERRING")) {
DEBUGA_SKYPE("skype_call %s is transferring\n", SKYPIAX_P_LOG, id);
} else if (!strcasecmp(value, "TRANSFERRED")) {
DEBUGA_SKYPE("skype_call %s has been transferred\n", SKYPIAX_P_LOG, id);
} else if (!strcasecmp(value, "ROUTING")) {
tech_pvt->skype_callflow = CALLFLOW_STATUS_ROUTING;
tech_pvt->interface_state = SKYPIAX_STATE_DIALING;