RFC Errata
RFC 1141, "Incremental updating of the Internet checksum", January 1990
Note: This RFC has been updated by RFC 1624
Source of RFC: LegacyArea Assignment: int
Errata ID: 6350
Status: Held for Document Update
Type: Editorial
Publication Format(s) : TEXT
Reported By: Shu Xiao
Date Reported: 2020-12-08
Held for Document Update by: Eric Vyncke
Date Held: 2021-01-28
Section Description says:
ipptr->Checksum = (sum + (sum>>16)) /* add carry */
It should say:
ipptr->Checksum = (sum + (sum>>16)); /* add carry */
Notes:
There is a ";" missing at the end of code line, before comments.