[asterisk-commits] seanbright: branch 1.8 r355182 - /branches/1.8/channels/chan_iax2.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Feb 14 07:33:13 CST 2012
Author: seanbright
Date: Tue Feb 14 07:33:09 2012
New Revision: 355182
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=355182
Log:
Clear the high order bit from the destination call number before sending.
send_apathetic_reply takes the incoming frame's source call number as the
destination call number for the outgoing frame. If the incoming frame was a
full frame, then the high order bit of the source call number is set and will be
interpreted as a retransmit when sent back out as the destination call number.
Modified:
branches/1.8/channels/chan_iax2.c
Modified: branches/1.8/channels/chan_iax2.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/channels/chan_iax2.c?view=diff&rev=355182&r1=355181&r2=355182
==============================================================================
--- branches/1.8/channels/chan_iax2.c (original)
+++ branches/1.8/channels/chan_iax2.c Tue Feb 14 07:33:09 2012
@@ -4699,7 +4699,7 @@
}
data.f.scallno = htons(0x8000 | callno);
- data.f.dcallno = htons(dcallno);
+ data.f.dcallno = htons(dcallno & ~IAX_FLAG_RETRANS);
data.f.ts = htonl(ts);
data.f.iseqno = seqno;
data.f.oseqno = 0;
More information about the asterisk-commits
mailing list