mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
Just to be on the safe side, don't update timestamps against anything but voice packets.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2472 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -4574,7 +4574,7 @@ static int socket_read(int *id, int fd, short events, void *cbdata)
|
||||
fr.oseqno = fh->oseqno;
|
||||
fr.iseqno = fh->iseqno;
|
||||
fr.ts = ntohl(fh->ts);
|
||||
if (ntohs(fh->dcallno) & IAX_FLAG_RETRANS)
|
||||
if ((ntohs(fh->dcallno) & IAX_FLAG_RETRANS) || (f.frametype != AST_FRAME_VOICE))
|
||||
updatehistory = 0;
|
||||
if ((iaxs[fr.callno]->iseqno != fr.oseqno) &&
|
||||
(iaxs[fr.callno]->iseqno ||
|
||||
|
Reference in New Issue
Block a user