From: <do...@us...> - 2008-01-29 21:26:56
|
Revision: 1334 http://iaxclient.svn.sourceforge.net/iaxclient/?rev=1334&view=rev Author: dohpaz Date: 2008-01-29 13:27:00 -0800 (Tue, 29 Jan 2008) Log Message: ----------- Revert out change 1328. Causes more problems then it attempted to fix. Need to figure out why it works in asterisk but not iaxclient. Modified Paths: -------------- branches/team/elbunce/iaxclient/lib/libiax2/src/iax.c Modified: branches/team/elbunce/iaxclient/lib/libiax2/src/iax.c =================================================================== --- branches/team/elbunce/iaxclient/lib/libiax2/src/iax.c 2008-01-24 20:15:59 UTC (rev 1333) +++ branches/team/elbunce/iaxclient/lib/libiax2/src/iax.c 2008-01-29 21:27:00 UTC (rev 1334) @@ -662,7 +662,9 @@ } /* Record the last sent packet for future reference */ - session->lastsent = ms; + /* unless an AST_FRAME_IAX */ + if (!genuine) + session->lastsent = ms; #ifdef USE_VOICE_TS_PREDICTION /* set next predicted ts based on 8khz samples */ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |