[Freeswitch-svn] [commit] r12524 - freeswitch/trunk/src/mod/endpoints/mod_skypiax

FreeSWITCH SVN gmaruzz at freeswitch.org
Sun Mar 8 08:31:45 PDT 2009


Author: gmaruzz
Date: Sun Mar  8 10:31:45 2009
New Revision: 12524

Log:
skypiax: don't warns about TRANSFERRING and TRANSFERRED states

Modified:
   freeswitch/trunk/src/mod/endpoints/mod_skypiax/skypiax_protocol.c

Modified: freeswitch/trunk/src/mod/endpoints/mod_skypiax/skypiax_protocol.c
==============================================================================
--- freeswitch/trunk/src/mod/endpoints/mod_skypiax/skypiax_protocol.c	(original)
+++ freeswitch/trunk/src/mod/endpoints/mod_skypiax/skypiax_protocol.c	Sun Mar  8 10:31:45 2009
@@ -341,6 +341,10 @@
               /* 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;



More information about the Freeswitch-svn mailing list