]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
fixes problem with duplicate TXREQ packets
authorDavid Vossel <dvossel@digium.com>
Wed, 3 Mar 2010 18:02:27 +0000 (18:02 +0000)
committerDavid Vossel <dvossel@digium.com>
Wed, 3 Mar 2010 18:02:27 +0000 (18:02 +0000)
When Asterisk receives an IAX2 TXREQ packet, try_transfer()
will call store_by_transfercallno() to link the chan_iax2_pvt
struct into iax_transfercallno_pvts. If a duplicate TXREQ
packet is received for the same call, the pvt struct will be
linked into iax_transfercallno_pvts multiple times.  This patch
fixes this.  Thanks rain for debugging this and providing a patch!

(closes issue #16904)
Reported by: rain
Patches:
      iax2-double-txreq-fix.diff uploaded by rain (license 327)
Tested by: rain, dvossel

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

channels/chan_iax2.c

index 7222c0b97f412f4efcfb13e51b190716cf2f7685..26da023446ff97b922b3016798496c47d27ced08 100644 (file)
@@ -7088,9 +7088,14 @@ static int try_transfer(struct chan_iax2_pvt *pvt, struct iax_ies *ies)
        memcpy(&pvt->transfer, &new, sizeof(pvt->transfer));
        inet_aton(newip, &pvt->transfer.sin_addr);
        pvt->transfer.sin_family = AF_INET;
-       pvt->transferring = TRANSFER_BEGIN;
        pvt->transferid = ies->transferid;
-       store_by_transfercallno(pvt);
+       /* only store by transfercallno if this is a new transfer,
+        * just in case we get a duplicate TXREQ */
+       if (pvt->transferring == TRANSFER_NONE) {
+               store_by_transfercallno(pvt);
+       }
+       pvt->transferring = TRANSFER_BEGIN;
+
        if (ies->transferid)
                iax_ie_append_int(&ied, IAX_IE_TRANSFERID, ies->transferid);
        send_command_transfer(pvt, AST_FRAME_IAX, IAX_COMMAND_TXCNT, 0, ied.buf, ied.pos);
@@ -7197,7 +7202,7 @@ static int complete_transfer(int callno, struct iax_ies *ies)
        pvt->voiceformat = 0;
        pvt->svideoformat = -1;
        pvt->videoformat = 0;
-       pvt->transfercallno = -1;
+       pvt->transfercallno = 0;
        memset(&pvt->rxcore, 0, sizeof(pvt->rxcore));
        memset(&pvt->offset, 0, sizeof(pvt->offset));
        /* reset jitterbuffer */