RFC Errata
RFC 3550, "RTP: A Transport Protocol for Real-Time Applications", July 2003
Note: This RFC has been updated by RFC 5506, RFC 5761, RFC 6051, RFC 6222, RFC 7022, RFC 7160, RFC 7164, RFC 8083, RFC 8108, RFC 8860
Source of RFC: avt (rai)
Errata ID: 3914
Status: Rejected
Type: Technical
Publication Format(s) : TEXT
Reported By: Hani Mustafa
Date Reported: 2014-03-06
Rejected by: Richard Barnes
Date Rejected: 2014-03-06
Section A.1 says:
init_seq(s, seq); s->max_seq = seq - 1; s->probation = MIN_SEQUENTIAL;
It should say:
init_seq(s, seq); s->max_seq = seq == 0 ? seq : seq - 1; s->probation = MIN_SEQUENTIAL;
Notes:
If the first RTP packet has a sequence number of 0, the logic will cause cycles to increase by 1, which will affect "expected number of received packets" calculations.
--VERIFIER NOTES--
Submitter requested rejection.