From: John Bigelow Date: Wed, 23 Oct 2013 16:37:34 +0000 (+0000) Subject: Add a test suite event to indicate when the atxfer 3-way feature is detected X-Git-Tag: 12.0.0-beta2~102 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6c890189488643992186eef36a1bedc42c8ebcc5;p=thirdparty%2Fasterisk.git Add a test suite event to indicate when the atxfer 3-way feature is detected This adds a test suite event that indicates to tests when the attended transfer three-way call feature is detected. Review: https://reviewboard.asterisk.org/r/2912/ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/12@401578 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/bridge_channel.c b/main/bridge_channel.c index 9256a75d02..96bfb209a3 100644 --- a/main/bridge_channel.c +++ b/main/bridge_channel.c @@ -1092,6 +1092,7 @@ static void testsuite_notify_feature_success(struct ast_channel *chan, const cha #ifdef TEST_FRAMEWORK char *feature = "unknown"; struct ast_featuremap_config *featuremap = ast_get_chan_featuremap_config(chan); + struct ast_features_xfer_config *xfer = ast_get_chan_features_xfer_config(chan); if (featuremap) { if (!strcmp(dtmf, featuremap->blindxfer)) { @@ -1106,6 +1107,8 @@ static void testsuite_notify_feature_success(struct ast_channel *chan, const cha feature = "automixmon"; } else if (!strcmp(dtmf, featuremap->parkcall)) { feature = "parkcall"; + } else if (!strcmp(dtmf, xfer->atxferthreeway)) { + feature = "atxferthreeway"; } }