You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Section 11.4.1 of RFC 5906, rfc2html misinterpreted line numbers - it added inaccurate id attributes. This causes some section-specific links not to work, e.g., these links to Section 13 https://www.rfc-editor.org/rfc/rfc5906.html#section-13 and https://datatracker.ietf.org/doc/html/rfc5906#section-13
go to the first id="section-13" within the file, which is the line number,
rather than the actual Section 13 (IANA Considerations). Thanks to @tward212 for noting this.
input (Figure 9 in RFC 5906):
1 while (1) {
2 wait_for_next_poll;
3 make_NTP_header;
4 if (response_ready)
5 send_response;
6 if (!ENB) /* parameter exchange */
7 ASSOC_request;
8 else if (!CERT) /* certificate exchange */
9 CERT_request(Host_Name);
10 else if (!IFF) /* identity exchange */
11 IFF_challenge;
12 else if (!COOK) /* cookie exchange */
13 COOKIE_request;
14 else if (!SYNC) /* wait for synchronization */
15 continue;
16 else if (!SIGN) /* sign exchange */
17 SIGN_request(Host_Certificate);
18 else if (!LEAP) /* leapsecond values exchange */
19 LEAP_request;
20 send packet;
21 }
In Section 11.4.1 of RFC 5906, rfc2html misinterpreted line numbers - it added inaccurate id attributes. This causes some section-specific links not to work, e.g., these links to Section 13
https://www.rfc-editor.org/rfc/rfc5906.html#section-13 and
https://datatracker.ietf.org/doc/html/rfc5906#section-13
go to the first id="section-13" within the file, which is the line number,
rather than the actual Section 13 (IANA Considerations). Thanks to @tward212 for noting this.
input (Figure 9 in RFC 5906):
rfc2html output:
The text was updated successfully, but these errors were encountered: