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.
........

Merged revisions 355182 from http://svn.asterisk.org/svn/asterisk/branches/1.8


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/10@355183 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Sean Bright
2012-02-14 13:33:51 +00:00
parent cbcdf9698c
commit 34d07c8706
+1 -1
View File
@@ -4793,7 +4793,7 @@ static int send_apathetic_reply(unsigned short callno, unsigned short dcallno,
}
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;