Subject: Bug in notes... (This message is being sent to all CPSC 360 students) The notes erroneously said the "between test" should test: (rpsock->lstack <= hdr->ack < rpsock->nxtsnd) ------------------------------------------------------ They should have said: (rpsock->lstack <= hdr->ack <= rpsock->nxtsnd) When the ack for the LAST unacked packet arrives, it will be the case that hdr->ack == rpsock->nxtsnd When rpsock->lstack == hdr->ack, then the ack is a duplicate, but duplicates can carry window updates and information regarding packet loss.