]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
This patch adds additional checking when generating queue log TRANSFER events.
authorMatthew Nicholson <mnicholson@digium.com>
Wed, 12 Aug 2009 23:04:02 +0000 (23:04 +0000)
committerMatthew Nicholson <mnicholson@digium.com>
Wed, 12 Aug 2009 23:04:02 +0000 (23:04 +0000)
The additional checks prevent generation of false TRANSFER events in certain situations.

(closes issue #14536)
Reported by: aragon
Patches:
      queue-log-xfer-fix1.diff uploaded by mnicholson (license 96)
Tested by: aragon, mnicholson

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@211953 65c4cc65-6c06-0410-ace0-fbb531ad65f3

apps/app_queue.c

index 63cb4b082e20db146ea9000da37b08b946ec4325..d254eb2515c3b49911fc0c9b3bbdba4c301bcaa7 100644 (file)
@@ -3231,7 +3231,9 @@ static int try_calling(struct queue_ent *qe, const char *options, char *announce
                ast_channel_lock(qe->chan);
                if (!attended_transfer_occurred(qe->chan)) {
                        struct ast_datastore *tds;
-                       if (strcasecmp(oldcontext, qe->chan->context) || strcasecmp(oldexten, qe->chan->exten)) {
+
+                       /* detect a blind transfer */
+                       if (!(qe->chan->_softhangup | peer->_softhangup) && (strcasecmp(oldcontext, qe->chan->context) || strcasecmp(oldexten, qe->chan->exten))) {
                                ast_queue_log(queuename, qe->chan->uniqueid, member->membername, "TRANSFER", "%s|%s|%ld|%ld",
                                        qe->chan->exten, qe->chan->context, (long) (callstart - qe->start),
                                        (long) (time(NULL) - callstart));