From: Giovanni Maruzzelli Date: Sun, 8 Mar 2009 15:31:45 +0000 (+0000) Subject: skypiax: don't warns about TRANSFERRING and TRANSFERRED states X-Git-Tag: v1.0.4~1596 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=601a1870969e51e5aaed110afeddc8138ac7e05a;p=thirdparty%2Ffreeswitch.git 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 --- diff --git a/src/mod/endpoints/mod_skypiax/skypiax_protocol.c b/src/mod/endpoints/mod_skypiax/skypiax_protocol.c index eff7bb2982..0b609c1a37 100644 --- a/src/mod/endpoints/mod_skypiax/skypiax_protocol.c +++ b/src/mod/endpoints/mod_skypiax/skypiax_protocol.c @@ -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;