dect
/
asterisk
Archived
13
0
Fork 0

Merged revisions 75759 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.4

................
r75759 | russell | 2007-07-18 16:09:46 -0500 (Wed, 18 Jul 2007) | 13 lines

Merged revisions 75757 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.2

........
r75757 | russell | 2007-07-18 16:09:13 -0500 (Wed, 18 Jul 2007) | 5 lines

When traversing the queue of frames for possible retransmission after
receiving a VNAK, handle sequence number wraparound so that all frames that 
should be retransmitted actually do get retransmitted.
(issue #10227, reported and patched by mihai)

........

................


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@75761 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
russell 2007-07-18 21:10:27 +00:00
parent 8f4c5132b3
commit d25b5bd7b0
1 changed files with 1 additions and 1 deletions

View File

@ -6152,7 +6152,7 @@ static void vnak_retransmit(int callno, int last)
AST_LIST_TRAVERSE(&frame_queue, f, list) {
/* Send a copy immediately */
if ((f->callno == callno) && iaxs[f->callno] &&
(f->oseqno >= last)) {
((unsigned char ) (f->oseqno - last) < 128)) {
send_packet(f);
}
}