sctp.BUGS - List of known bugs in the NS-2 SCTP module. Armando L. Caro Jr. @(#) $Header: /home/pel/cvs/ns-allinone-2.1b8.sctp/ns-2.1b8/sctp.BUGS,v 1.16 2003/07/17 22:54:54 acaro Exp $ ------------------------------------------------------------------------------ - In ProcessSackChunk(), the T3Rtx timer is sometimes restarted for destinations that have not acknowledged their first outstanding. The code below assumes that if the timer isn't running, then the first outstanding for that destination has been acked, but that isn't always the case. Reported by Martin Duke if(spCurrDestNodeData->iOutstandingBytes > 0 && spCurrDestNodeData->eRtxTimerIsRunning == FALSE) { StartT3RtxTimer(spCurrDestNodeData); }