RFC Errata
Found 2 records.
Status: Verified (2)
RFC 9187, "Sequence Number Extension for Windowed Protocols", January 2022
Source of RFC: INDEPENDENT
Errata ID: 6827
Status: Verified
Type: Editorial
Publication Format(s) : TEXT, PDF, HTML
Reported By: Erik Auerswald
Date Reported: 2022-02-02
Verifier Name: Adrian Farrel
Date Verified: 2022-02-06
Section 5 says:
The following C code is provided as a verified example of SNE from 16 to 32 bits.
It should say:
The following C code is provided as a verified example of SNE from 32 to 64 bits.
Notes:
The code takes 32 bits sequence numbers and extends them to 64 bits.
Errata ID: 6828
Status: Verified
Type: Editorial
Publication Format(s) : TEXT, PDF, HTML
Reported By: Erik Auerswald
Date Reported: 2022-02-02
Verifier Name: Adrian Farrel
Date Verified: 2022-02-06
Section 5 says:
char *prompt = "Input hex numbers only (0x is optional)\n\n")
It should say:
char *prompt = "Input hex numbers only (0x is optional)\n\n"
Notes:
The closing parenthesis at the end of the line is a syntax error for the C programming language:
$ cc compute_sne.c
compute_sne.c: In function ‘main’:
compute_sne.c:78:64: error: expected ‘,’ or ‘;’ before ‘)’ token