From bee1e8519de285c8c129484ea322e8c7000a6f90 Mon Sep 17 00:00:00 2001 From: Matthew Holloway Date: Tue, 28 Jan 2025 15:23:11 +1300 Subject: [PATCH] chore: rfc-index.xml matching until RFC13 --- client/utilities/rfc-index-txt.ts | 25 +- client/utilities/rfc-index-xml.ts | 98 +- client/utilities/rfc-index.xml | 4886 ++++++++++++------------ client/utilities/rfc-index.xml.test.ts | 33 +- client/utilities/rfc.mocks.ts | 24 +- client/utilities/rfc.ts | 24 + client/utilities/url.ts | 10 +- 7 files changed, 2597 insertions(+), 2503 deletions(-) diff --git a/client/utilities/rfc-index-txt.ts b/client/utilities/rfc-index-txt.ts index c265081..63e75b9 100644 --- a/client/utilities/rfc-index-txt.ts +++ b/client/utilities/rfc-index-txt.ts @@ -1,9 +1,10 @@ import { DateTime } from 'luxon' import { padStart } from 'lodash-es' import { SPACE } from './strings' -import type { ApiClient, RfcMetadata } from '~/generated/red-client' import type { ExtraFieldsNeeded } from './rfc.mocks' import { getRFCWithExtraFields } from './rfc.mocks' +import { formatAuthor } from './rfc' +import type { ApiClient, RfcMetadata } from '~/generated/red-client' // Note: this file is intentionally named rfc-index-txt.ts not rfc-index.txt.ts // because vitest can't import that later filename @@ -149,21 +150,6 @@ const stringifyIdentifiers = ( .join(' ')}` } -const stringifyAuthor = (author: RfcMetadata['authors'][number]): string => { - const name = author.name - .split(/[\s.]/g) - .filter(Boolean) - .reduce((acc, item, index, arr) => { - return `${acc}${ - index === arr.length - 1 ? - ` ${item}` - : `${item.substring(0, 1).toUpperCase()}.` - }` - }, '') - - return author.affiliation === 'Editor' ? `${name}, Ed.` : name -} - const formatRfcNumber = (number: number): string => { return `RFC${number.toString()}` } @@ -228,7 +214,7 @@ const stringifyRFC = ( } doi = stringifyIdentifiers(rfc.identifiers) - return `${rfc.title}. ${rfc.authors.map(stringifyAuthor).join(', ')}. ${rfcdate}. (${rfcformat})${obsups}${also} (Status: ${rfc.status.name.toUpperCase()})${doi}` + return `${rfc.title}. ${rfc.authors.map(formatAuthor).join(', ')}. ${rfcdate}. (${rfcformat})${obsups}${also} (Status: ${rfc.status.name.toUpperCase()})${doi}` } } @@ -311,11 +297,6 @@ See the RFC Editor Web page http://www.rfc-editor.org ` } -const toArray = (obj: unknown) => { - if (!obj) return [] - return Array.isArray(obj) ? obj : [obj] -} - export const splitLinesAt = (str: string, lineLength: number): string[] => { const lines: string[] = [] let remainingStr = str diff --git a/client/utilities/rfc-index-xml.ts b/client/utilities/rfc-index-xml.ts index 77193af..f61d69c 100644 --- a/client/utilities/rfc-index-xml.ts +++ b/client/utilities/rfc-index-xml.ts @@ -1,7 +1,9 @@ import { DateTime } from 'luxon' import { XMLBuilder } from 'fast-xml-parser' -import type { ApiClient } from '~/generated/red-client' import { getRFCWithExtraFields } from './rfc.mocks' +import { formatAuthor } from './rfc' +import { rfcErrataPathBuilder } from './url' +import type { ApiClient } from '~/generated/red-client' type DocListArg = Parameters[0] @@ -85,46 +87,96 @@ const renderRFCs = async ({ .toFormat('LLLL yyyy') .split(' ') - const abstractParagraphs = (rfc.abstract ?? '').split('\n') - - // FIXME: replace with RFC formats when the API has them - const formats = ['HTML', 'TEXT', 'PDF', 'XML'] - + // Based on https://github.com/rfc-editor/rpcwebsite/blob/edf4896c1d97fdd79a78ee6145e3a0c5ffb11fb9/rfc-ed/bin/xmlIndex.pl const rfcForXml = { 'rfc-entry': { - 'doc-id': `rfc${rfc.number}`, + 'doc-id': `RFC${rfc.number}`, title: rfc.title, ...(rfc.authors.length > 0 ? { author: { - name: rfc.authors + name: rfc.authors.map(formatAuthor) } } : {}), date: { month, year }, - format: { - 'file-format': formats - }, + ...(rfc.formats ? + { + format: { + 'file-format': rfc.formats.map((format) => { + if (format.type === 'TXT') { + return 'ASCII' + } + return format.type + }) + } + } + : {}), 'page-count': rfc.pages, - keywords: { - // @ts-expect-error update when client provides that - kw: rfc.keywords - }, - ...(abstractParagraphs.length > 0 ? + ...(rfc.keywords ? + { + keywords: { + kw: rfc.keywords + } + } + : {}), + ...(rfc.obsoletes && rfc.obsoletes.length > 0 ? + { + obsoletes: { + 'doc-id': rfc.obsoletes.map( + (obsoletesItem) => `RFC${obsoletesItem.number}` + ) + } + } + : {}), + ...(rfc.obsoleted_by && rfc.obsoleted_by.length > 0 ? + { + 'obsoleted-by': { + 'doc-id': rfc.obsoleted_by.map( + (obsoletedByItem) => `RFC${obsoletedByItem.number}` + ) + } + } + : {}), + ...(rfc.updated_by && rfc.updated_by.length > 0 ? + { + 'updated-by': { + 'doc-id': rfc.updated_by.map( + (updatedByItem) => `RFC${updatedByItem.number}` + ) + } + } + : {}), + ...(rfc.abstract ? { abstract: // Certain RFCs have multiple paragraphs such as RFC1849, RFC2169, RFC2178, RFC2660, RFC3318, RFC3867, RFC3873, RFC3875, RFC3886, RFC3890, RFC3894, RFC3903, RFC3918, RFC3919, RFC3927, RFC3932, RFC3933, RFC3938, RFC3945, RFC3949, RFC3965, RFC3974, RFC3987, RFC3995, RFC4005, RFC4010, RFC4025, RFC4026, RFC4034, RFC4035, RFC4040, RFC4041, RFC4042, RFC4043, RFC4053, RFC4061, RFC4078, RFC4080, RFC4082, RFC4086, RFC4088, RFC4090 etc... - abstractParagraphs.map((abstractParagraph) => ({ + rfc.abstract.split('\n').map((abstractParagraph) => ({ p: abstractParagraph })) } : {}), - draft: 'draft-ietf-lamps-cms-cek-hkdf-sha256-05', - 'current-status': rfc.status.slug, - 'publication-status': rfc.status.slug, - stream: rfc.stream.name, - area: rfc.area, - wg_acronym: rfc.group.acronym, + ...(rfc.draft ? { draft: rfc.draft } : {}), + 'current-status': rfc.status.slug.toUpperCase(), + 'publication-status': rfc.status.slug.toUpperCase(), + ...(rfc.stream.slug === 'LEGACY' ? + { stream: 'Legacy' } + : { + stream: rfc.stream.name, + ...(rfc.area?.acronym ? { area: rfc.area?.acronym } : {}), + ...(rfc.group.acronym ? + // wg_acronym: + // rfc.group.acronym === 'IETF-NWG' ? + // 'NON WORKING GROUP' + // : rfc.group.acronym + {} + : {}) + }), + ...(rfc.errata && rfc.errata.length > 0 ? + { + 'errata-url': rfcErrataPathBuilder(`rfc${rfc.number}`) + } + : {}), doi: rfc.identifiers?.find((identifier) => identifier.type === 'doi') ?.value ?? undefined diff --git a/client/utilities/rfc-index.xml b/client/utilities/rfc-index.xml index 2a4dd99..a00b873 100644 --- a/client/utilities/rfc-index.xml +++ b/client/utilities/rfc-index.xml @@ -1700,7 +1700,7 @@ UNKNOWN UNKNOWN Legacy - https://www.rfc-editor.org/errata/rfc2 + https://www.rfc-editor.org/errata/rfc2/ 10.17487/RFC0002 @@ -1764,7 +1764,7 @@ UNKNOWN UNKNOWN Legacy - https://www.rfc-editor.org/errata/rfc5 + https://www.rfc-editor.org/errata/rfc5/ 10.17487/RFC0005 @@ -2078,7 +2078,7 @@ INTERNET STANDARD UNKNOWN Legacy - https://www.rfc-editor.org/errata/rfc20 + https://www.rfc-editor.org/errata/rfc20/ 10.17487/RFC0020 @@ -2313,7 +2313,7 @@ UNKNOWN UNKNOWN Legacy - https://www.rfc-editor.org/errata/rfc31 + https://www.rfc-editor.org/errata/rfc31/ 10.17487/RFC0031 @@ -2361,7 +2361,7 @@ UNKNOWN UNKNOWN Legacy - https://www.rfc-editor.org/errata/rfc33 + https://www.rfc-editor.org/errata/rfc33/ 10.17487/RFC0033 @@ -2923,7 +2923,7 @@ UNKNOWN UNKNOWN Legacy - https://www.rfc-editor.org/errata/rfc57 + https://www.rfc-editor.org/errata/rfc57/ 10.17487/RFC0057 @@ -2964,7 +2964,7 @@ UNKNOWN UNKNOWN Legacy - https://www.rfc-editor.org/errata/rfc59 + https://www.rfc-editor.org/errata/rfc59/ 10.17487/RFC0059 @@ -3118,7 +3118,7 @@ UNKNOWN UNKNOWN Legacy - https://www.rfc-editor.org/errata/rfc66 + https://www.rfc-editor.org/errata/rfc66/ 10.17487/RFC0066 @@ -3563,7 +3563,7 @@ UNKNOWN UNKNOWN Legacy - https://www.rfc-editor.org/errata/rfc86 + https://www.rfc-editor.org/errata/rfc86/ 10.17487/RFC0086 @@ -3610,7 +3610,7 @@ UNKNOWN UNKNOWN Legacy - https://www.rfc-editor.org/errata/rfc88 + https://www.rfc-editor.org/errata/rfc88/ 10.17487/RFC0088 @@ -3631,7 +3631,7 @@ UNKNOWN UNKNOWN Legacy - https://www.rfc-editor.org/errata/rfc89 + https://www.rfc-editor.org/errata/rfc89/ 10.17487/RFC0089 @@ -3652,7 +3652,7 @@ UNKNOWN UNKNOWN Legacy - https://www.rfc-editor.org/errata/rfc90 + https://www.rfc-editor.org/errata/rfc90/ 10.17487/RFC0090 @@ -4449,7 +4449,7 @@ UNKNOWN UNKNOWN Legacy - https://www.rfc-editor.org/errata/rfc124 + https://www.rfc-editor.org/errata/rfc124/ 10.17487/RFC0124 @@ -4525,7 +4525,7 @@ UNKNOWN UNKNOWN Legacy - https://www.rfc-editor.org/errata/rfc127 + https://www.rfc-editor.org/errata/rfc127/ 10.17487/RFC0127 @@ -5376,7 +5376,7 @@ UNKNOWN UNKNOWN Legacy - https://www.rfc-editor.org/errata/rfc162 + https://www.rfc-editor.org/errata/rfc162/ 10.17487/RFC0162 @@ -6222,7 +6222,7 @@ UNKNOWN UNKNOWN Legacy - https://www.rfc-editor.org/errata/rfc194 + https://www.rfc-editor.org/errata/rfc194/ 10.17487/RFC0194 @@ -7826,7 +7826,7 @@ UNKNOWN UNKNOWN Legacy - https://www.rfc-editor.org/errata/rfc270 + https://www.rfc-editor.org/errata/rfc270/ 10.17487/RFC0270 @@ -8532,7 +8532,7 @@ UNKNOWN UNKNOWN Legacy - https://www.rfc-editor.org/errata/rfc304 + https://www.rfc-editor.org/errata/rfc304/ 10.17487/RFC0304 @@ -13432,7 +13432,7 @@ UNKNOWN UNKNOWN Legacy - https://www.rfc-editor.org/errata/rfc542 + https://www.rfc-editor.org/errata/rfc542/ 10.17487/RFC0542 @@ -14312,7 +14312,7 @@ UNKNOWN UNKNOWN Legacy - https://www.rfc-editor.org/errata/rfc586 + https://www.rfc-editor.org/errata/rfc586/ 10.17487/RFC0586 @@ -15535,7 +15535,7 @@ UNKNOWN UNKNOWN Legacy - https://www.rfc-editor.org/errata/rfc640 + https://www.rfc-editor.org/errata/rfc640/ 10.17487/RFC0640 @@ -16139,7 +16139,7 @@ HISTORIC UNKNOWN Legacy - https://www.rfc-editor.org/errata/rfc675 + https://www.rfc-editor.org/errata/rfc675/ 10.17487/RFC0675 @@ -17962,7 +17962,7 @@ HISTORIC UNKNOWN Legacy - https://www.rfc-editor.org/errata/rfc761 + https://www.rfc-editor.org/errata/rfc761/ 10.17487/RFC0761 @@ -18495,7 +18495,7 @@ UNKNOWN UNKNOWN Legacy - https://www.rfc-editor.org/errata/rfc783 + https://www.rfc-editor.org/errata/rfc783/ 10.17487/RFC0783 @@ -18598,7 +18598,7 @@ UNKNOWN UNKNOWN Legacy - https://www.rfc-editor.org/errata/rfc787 + https://www.rfc-editor.org/errata/rfc787/ 10.17487/RFC0787 @@ -18710,7 +18710,7 @@ INTERNET STANDARD INTERNET STANDARD Legacy - https://www.rfc-editor.org/errata/rfc791 + https://www.rfc-editor.org/errata/rfc791/ 10.17487/RFC0791 @@ -18746,7 +18746,7 @@ INTERNET STANDARD INTERNET STANDARD Legacy - https://www.rfc-editor.org/errata/rfc792 + https://www.rfc-editor.org/errata/rfc792/ 10.17487/RFC0792 @@ -18782,7 +18782,7 @@ INTERNET STANDARD INTERNET STANDARD Legacy - https://www.rfc-editor.org/errata/rfc793 + https://www.rfc-editor.org/errata/rfc793/ 10.17487/RFC0793 @@ -19026,7 +19026,7 @@ UNKNOWN UNKNOWN Legacy - https://www.rfc-editor.org/errata/rfc804 + https://www.rfc-editor.org/errata/rfc804/ 10.17487/RFC0804 @@ -19388,7 +19388,7 @@ UNKNOWN UNKNOWN Legacy - https://www.rfc-editor.org/errata/rfc819 + https://www.rfc-editor.org/errata/rfc819/ 10.17487/RFC0819 @@ -19489,7 +19489,7 @@ INTERNET STANDARD INTERNET STANDARD Legacy - https://www.rfc-editor.org/errata/rfc822 + https://www.rfc-editor.org/errata/rfc822/ 10.17487/RFC0822 @@ -19521,7 +19521,7 @@ HISTORIC HISTORIC Legacy - https://www.rfc-editor.org/errata/rfc823 + https://www.rfc-editor.org/errata/rfc823/ 10.17487/RFC0823 @@ -19603,7 +19603,7 @@ INTERNET STANDARD INTERNET STANDARD Legacy - https://www.rfc-editor.org/errata/rfc826 + https://www.rfc-editor.org/errata/rfc826/ 10.17487/RFC0826 @@ -20291,7 +20291,7 @@ INTERNET STANDARD INTERNET STANDARD Legacy - https://www.rfc-editor.org/errata/rfc854 + https://www.rfc-editor.org/errata/rfc854/ 10.17487/RFC0854 @@ -20604,7 +20604,7 @@ INTERNET STANDARD INTERNET STANDARD Legacy - https://www.rfc-editor.org/errata/rfc864 + https://www.rfc-editor.org/errata/rfc864/ 10.17487/RFC0864 @@ -20632,7 +20632,7 @@ INTERNET STANDARD INTERNET STANDARD Legacy - https://www.rfc-editor.org/errata/rfc865 + https://www.rfc-editor.org/errata/rfc865/ 10.17487/RFC0865 @@ -20717,7 +20717,7 @@ INTERNET STANDARD INTERNET STANDARD Legacy - https://www.rfc-editor.org/errata/rfc868 + https://www.rfc-editor.org/errata/rfc868/ 10.17487/RFC0868 @@ -20977,7 +20977,7 @@ HISTORIC UNKNOWN Legacy - https://www.rfc-editor.org/errata/rfc879 + https://www.rfc-editor.org/errata/rfc879/ 10.17487/RFC0879 @@ -21060,7 +21060,7 @@ UNKNOWN UNKNOWN Legacy - https://www.rfc-editor.org/errata/rfc882 + https://www.rfc-editor.org/errata/rfc882/ 10.17487/RFC0882 @@ -21233,7 +21233,7 @@ INFORMATIONAL UNKNOWN Legacy - https://www.rfc-editor.org/errata/rfc889 + https://www.rfc-editor.org/errata/rfc889/ 10.17487/RFC0889 @@ -21360,7 +21360,7 @@ INTERNET STANDARD INTERNET STANDARD Legacy - https://www.rfc-editor.org/errata/rfc894 + https://www.rfc-editor.org/errata/rfc894/ 10.17487/RFC0894 @@ -21944,7 +21944,7 @@ HISTORIC HISTORIC Legacy - https://www.rfc-editor.org/errata/rfc916 + https://www.rfc-editor.org/errata/rfc916/ 10.17487/RFC0916 @@ -21966,7 +21966,7 @@ UNKNOWN UNKNOWN Legacy - https://www.rfc-editor.org/errata/rfc917 + https://www.rfc-editor.org/errata/rfc917/ 10.17487/RFC0917 @@ -21991,7 +21991,7 @@ UNKNOWN UNKNOWN Legacy - https://www.rfc-editor.org/errata/rfc918 + https://www.rfc-editor.org/errata/rfc918/ 10.17487/RFC0918 @@ -22832,7 +22832,7 @@ DRAFT STANDARD DRAFT STANDARD Legacy - https://www.rfc-editor.org/errata/rfc951 + https://www.rfc-editor.org/errata/rfc951/ 10.17487/RFC0951 @@ -22866,7 +22866,7 @@ UNKNOWN UNKNOWN Legacy - https://www.rfc-editor.org/errata/rfc952 + https://www.rfc-editor.org/errata/rfc952/ 10.17487/RFC0952 @@ -22999,7 +22999,7 @@ UNKNOWN UNKNOWN Legacy - https://www.rfc-editor.org/errata/rfc957 + https://www.rfc-editor.org/errata/rfc957/ 10.17487/RFC0957 @@ -23073,7 +23073,7 @@ INTERNET STANDARD INTERNET STANDARD Legacy - https://www.rfc-editor.org/errata/rfc959 + https://www.rfc-editor.org/errata/rfc959/ 10.17487/RFC0959 @@ -23978,7 +23978,7 @@ UNKNOWN UNKNOWN Legacy - https://www.rfc-editor.org/errata/rfc994 + https://www.rfc-editor.org/errata/rfc994/ 10.17487/RFC0994 @@ -24177,7 +24177,7 @@ INTERNET STANDARD INTERNET STANDARD Legacy - https://www.rfc-editor.org/errata/rfc1001 + https://www.rfc-editor.org/errata/rfc1001/ 10.17487/RFC1001 @@ -24211,7 +24211,7 @@ INTERNET STANDARD INTERNET STANDARD Legacy - https://www.rfc-editor.org/errata/rfc1002 + https://www.rfc-editor.org/errata/rfc1002/ 10.17487/RFC1002 @@ -24317,7 +24317,7 @@ INTERNET STANDARD INTERNET STANDARD Legacy - https://www.rfc-editor.org/errata/rfc1006 + https://www.rfc-editor.org/errata/rfc1006/ 10.17487/RFC1006 @@ -24836,7 +24836,7 @@ UNKNOWN UNKNOWN Legacy - https://www.rfc-editor.org/errata/rfc1027 + https://www.rfc-editor.org/errata/rfc1027/ 10.17487/RFC1027 @@ -24978,7 +24978,7 @@ UNKNOWN UNKNOWN Legacy - https://www.rfc-editor.org/errata/rfc1033 + https://www.rfc-editor.org/errata/rfc1033/ 10.17487/RFC1033 @@ -25033,7 +25033,7 @@ INTERNET STANDARD INTERNET STANDARD Legacy - https://www.rfc-editor.org/errata/rfc1034 + https://www.rfc-editor.org/errata/rfc1034/ 10.17487/RFC1034 @@ -25098,7 +25098,7 @@ INTERNET STANDARD INTERNET STANDARD Legacy - https://www.rfc-editor.org/errata/rfc1035 + https://www.rfc-editor.org/errata/rfc1035/ 10.17487/RFC1035 @@ -25130,7 +25130,7 @@ UNKNOWN UNKNOWN Legacy - https://www.rfc-editor.org/errata/rfc1036 + https://www.rfc-editor.org/errata/rfc1036/ 10.17487/RFC1036 @@ -25293,7 +25293,7 @@ INTERNET STANDARD INTERNET STANDARD Legacy - https://www.rfc-editor.org/errata/rfc1042 + https://www.rfc-editor.org/errata/rfc1042/ 10.17487/RFC1042 @@ -25630,7 +25630,7 @@ INTERNET STANDARD INTERNET STANDARD Legacy - https://www.rfc-editor.org/errata/rfc1055 + https://www.rfc-editor.org/errata/rfc1055/ 10.17487/RFC1055 @@ -25903,7 +25903,7 @@ INTERNET STANDARD INTERNET STANDARD Legacy - https://www.rfc-editor.org/errata/rfc1065 + https://www.rfc-editor.org/errata/rfc1065/ 10.17487/RFC1065 @@ -26075,7 +26075,7 @@ INFORMATIONAL UNKNOWN Legacy - https://www.rfc-editor.org/errata/rfc1071 + https://www.rfc-editor.org/errata/rfc1071/ 10.17487/RFC1071 @@ -27415,7 +27415,7 @@ INTERNET STANDARD INTERNET STANDARD Legacy - https://www.rfc-editor.org/errata/rfc1122 + https://www.rfc-editor.org/errata/rfc1122/ 10.17487/RFC1122 @@ -27456,7 +27456,7 @@ INTERNET STANDARD INTERNET STANDARD Legacy - https://www.rfc-editor.org/errata/rfc1123 + https://www.rfc-editor.org/errata/rfc1123/ 10.17487/RFC1123 @@ -27836,7 +27836,7 @@ EXPERIMENTAL EXPERIMENTAL Legacy - https://www.rfc-editor.org/errata/rfc1138 + https://www.rfc-editor.org/errata/rfc1138/ 10.17487/RFC1138 @@ -27929,7 +27929,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc1141 + https://www.rfc-editor.org/errata/rfc1141/ 10.17487/RFC1141 @@ -28128,7 +28128,7 @@ EXPERIMENTAL EXPERIMENTAL Legacy - https://www.rfc-editor.org/errata/rfc1148 + https://www.rfc-editor.org/errata/rfc1148/ 10.17487/RFC1148 @@ -28161,7 +28161,7 @@ EXPERIMENTAL EXPERIMENTAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc1149 + https://www.rfc-editor.org/errata/rfc1149/ 10.17487/RFC1149 @@ -28189,7 +28189,7 @@ HISTORIC INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc1150 + https://www.rfc-editor.org/errata/rfc1150/ 10.17487/RFC1150 @@ -28325,7 +28325,7 @@ INTERNET STANDARD INTERNET STANDARD Legacy - https://www.rfc-editor.org/errata/rfc1155 + https://www.rfc-editor.org/errata/rfc1155/ 10.17487/RFC1155 @@ -28392,7 +28392,7 @@ HISTORIC INTERNET STANDARD Legacy - https://www.rfc-editor.org/errata/rfc1157 + https://www.rfc-editor.org/errata/rfc1157/ 10.17487/RFC1157 @@ -28417,7 +28417,7 @@ PROPOSED STANDARD PROPOSED STANDARD Legacy - https://www.rfc-editor.org/errata/rfc1158 + https://www.rfc-editor.org/errata/rfc1158/ 10.17487/RFC1158 @@ -28810,7 +28810,7 @@ IETF int ppp - https://www.rfc-editor.org/errata/rfc1172 + https://www.rfc-editor.org/errata/rfc1172/ 10.17487/RFC1172 @@ -29022,7 +29022,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc1180 + https://www.rfc-editor.org/errata/rfc1180/ 10.17487/RFC1180 @@ -29091,7 +29091,7 @@ EXPERIMENTAL EXPERIMENTAL Legacy - https://www.rfc-editor.org/errata/rfc1183 + https://www.rfc-editor.org/errata/rfc1183/ 10.17487/RFC1183 @@ -29151,7 +29151,7 @@ EXPERIMENTAL EXPERIMENTAL Legacy - https://www.rfc-editor.org/errata/rfc1185 + https://www.rfc-editor.org/errata/rfc1185/ 10.17487/RFC1185 @@ -29428,7 +29428,7 @@ PROPOSED STANDARD PROPOSED STANDARD Legacy - https://www.rfc-editor.org/errata/rfc1195 + https://www.rfc-editor.org/errata/rfc1195/ 10.17487/RFC1195 @@ -30279,7 +30279,7 @@ HISTORIC HISTORIC Legacy - https://www.rfc-editor.org/errata/rfc1227 + https://www.rfc-editor.org/errata/rfc1227/ 10.17487/RFC1227 @@ -31248,7 +31248,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc1258 + https://www.rfc-editor.org/errata/rfc1258/ 10.17487/RFC1258 @@ -32075,7 +32075,7 @@ DRAFT STANDARD DRAFT STANDARD Legacy - https://www.rfc-editor.org/errata/rfc1288 + https://www.rfc-editor.org/errata/rfc1288/ 10.17487/RFC1288 @@ -33001,7 +33001,7 @@ IETF sec pem - https://www.rfc-editor.org/errata/rfc1319 + https://www.rfc-editor.org/errata/rfc1319/ 10.17487/RFC1319 @@ -33037,7 +33037,7 @@ IETF sec pem - https://www.rfc-editor.org/errata/rfc1320 + https://www.rfc-editor.org/errata/rfc1320/ 10.17487/RFC1320 @@ -33069,7 +33069,7 @@ IETF sec pem - https://www.rfc-editor.org/errata/rfc1321 + https://www.rfc-editor.org/errata/rfc1321/ 10.17487/RFC1321 @@ -33107,7 +33107,7 @@ IETF rtg bgp - https://www.rfc-editor.org/errata/rfc1322 + https://www.rfc-editor.org/errata/rfc1322/ 10.17487/RFC1322 @@ -33153,7 +33153,7 @@ IETF tsv tcplw - https://www.rfc-editor.org/errata/rfc1323 + https://www.rfc-editor.org/errata/rfc1323/ 10.17487/RFC1323 @@ -33426,7 +33426,7 @@ IETF int pppext - https://www.rfc-editor.org/errata/rfc1332 + https://www.rfc-editor.org/errata/rfc1332/ 10.17487/RFC1332 @@ -33602,7 +33602,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc1337 + https://www.rfc-editor.org/errata/rfc1337/ 10.17487/RFC1337 @@ -33699,7 +33699,7 @@ HISTORIC INTERNET STANDARD Legacy - https://www.rfc-editor.org/errata/rfc1340 + https://www.rfc-editor.org/errata/rfc1340/ 10.17487/RFC1340 @@ -33845,7 +33845,7 @@ IETF app 822ext - https://www.rfc-editor.org/errata/rfc1345 + https://www.rfc-editor.org/errata/rfc1345/ 10.17487/RFC1345 @@ -33963,7 +33963,7 @@ IETF rtg rreq - https://www.rfc-editor.org/errata/rfc1349 + https://www.rfc-editor.org/errata/rfc1349/ 10.17487/RFC1349 @@ -34007,7 +34007,7 @@ INTERNET STANDARD INTERNET STANDARD Legacy - https://www.rfc-editor.org/errata/rfc1350 + https://www.rfc-editor.org/errata/rfc1350/ 10.17487/RFC1350 @@ -34373,7 +34373,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc1361 + https://www.rfc-editor.org/errata/rfc1361/ 10.17487/RFC1361 @@ -34501,7 +34501,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc1365 + https://www.rfc-editor.org/errata/rfc1365/ 10.17487/RFC1365 @@ -35943,7 +35943,7 @@ IETF sec ident - https://www.rfc-editor.org/errata/rfc1413 + https://www.rfc-editor.org/errata/rfc1413/ 10.17487/RFC1413 @@ -36680,7 +36680,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc1436 + https://www.rfc-editor.org/errata/rfc1436/ 10.17487/RFC1436 @@ -36741,7 +36741,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc1438 + https://www.rfc-editor.org/errata/rfc1438/ 10.17487/RFC1438 @@ -37420,7 +37420,7 @@ EXPERIMENTAL EXPERIMENTAL Legacy - https://www.rfc-editor.org/errata/rfc1459 + https://www.rfc-editor.org/errata/rfc1459/ 10.17487/RFC1459 @@ -37560,7 +37560,7 @@ EXPERIMENTAL EXPERIMENTAL Legacy - https://www.rfc-editor.org/errata/rfc1464 + https://www.rfc-editor.org/errata/rfc1464/ 10.17487/RFC1464 @@ -38623,7 +38623,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc1498 + https://www.rfc-editor.org/errata/rfc1498/ 10.17487/RFC1498 @@ -38957,7 +38957,7 @@ IETF sec cat - https://www.rfc-editor.org/errata/rfc1510 + https://www.rfc-editor.org/errata/rfc1510/ 10.17487/RFC1510 @@ -39180,7 +39180,7 @@ PROPOSED STANDARD IETF IESG - https://www.rfc-editor.org/errata/rfc1517 + https://www.rfc-editor.org/errata/rfc1517/ 10.17487/RFC1517 @@ -39249,7 +39249,7 @@ PROPOSED STANDARD PROPOSED STANDARD Legacy - https://www.rfc-editor.org/errata/rfc1519 + https://www.rfc-editor.org/errata/rfc1519/ 10.17487/RFC1519 @@ -39360,7 +39360,7 @@ IETF app 822ext - https://www.rfc-editor.org/errata/rfc1522 + https://www.rfc-editor.org/errata/rfc1522/ 10.17487/RFC1522 @@ -39419,7 +39419,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc1524 + https://www.rfc-editor.org/errata/rfc1524/ 10.17487/RFC1524 @@ -39632,7 +39632,7 @@ IETF int dhc - https://www.rfc-editor.org/errata/rfc1531 + https://www.rfc-editor.org/errata/rfc1531/ 10.17487/RFC1531 @@ -39706,7 +39706,7 @@ IETF int dhc - https://www.rfc-editor.org/errata/rfc1533 + https://www.rfc-editor.org/errata/rfc1533/ 10.17487/RFC1533 @@ -39737,7 +39737,7 @@ IETF int dhc - https://www.rfc-editor.org/errata/rfc1534 + https://www.rfc-editor.org/errata/rfc1534/ 10.17487/RFC1534 @@ -39764,7 +39764,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc1535 + https://www.rfc-editor.org/errata/rfc1535/ 10.17487/RFC1535 @@ -39994,7 +39994,7 @@ DRAFT STANDARD DRAFT STANDARD Legacy - https://www.rfc-editor.org/errata/rfc1542 + https://www.rfc-editor.org/errata/rfc1542/ 10.17487/RFC1542 @@ -40448,7 +40448,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc1557 + https://www.rfc-editor.org/errata/rfc1557/ 10.17487/RFC1557 @@ -41988,7 +41988,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc1606 + https://www.rfc-editor.org/errata/rfc1606/ 10.17487/RFC1606 @@ -42087,7 +42087,7 @@ IETF app osids - https://www.rfc-editor.org/errata/rfc1609 + https://www.rfc-editor.org/errata/rfc1609/ 10.17487/RFC1609 @@ -42563,7 +42563,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc1624 + https://www.rfc-editor.org/errata/rfc1624/ 10.17487/RFC1624 @@ -42722,7 +42722,7 @@ IETF ops upsmib - https://www.rfc-editor.org/errata/rfc1628 + https://www.rfc-editor.org/errata/rfc1628/ 10.17487/RFC1628 @@ -42788,7 +42788,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc1630 + https://www.rfc-editor.org/errata/rfc1630/ 10.17487/RFC1630 @@ -42893,7 +42893,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc1633 + https://www.rfc-editor.org/errata/rfc1633/ 10.17487/RFC1633 @@ -43858,7 +43858,7 @@ IETF int pppext - https://www.rfc-editor.org/errata/rfc1661 + https://www.rfc-editor.org/errata/rfc1661/ 10.17487/RFC1661 @@ -43899,7 +43899,7 @@ IETF int pppext - https://www.rfc-editor.org/errata/rfc1662 + https://www.rfc-editor.org/errata/rfc1662/ 10.17487/RFC1662 @@ -44575,7 +44575,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc1685 + https://www.rfc-editor.org/errata/rfc1685/ 10.17487/RFC1685 @@ -45413,7 +45413,7 @@ EXPERIMENTAL EXPERIMENTAL Legacy - https://www.rfc-editor.org/errata/rfc1712 + https://www.rfc-editor.org/errata/rfc1712/ 10.17487/RFC1712 @@ -45808,7 +45808,7 @@ IETF rtg ripv2 - https://www.rfc-editor.org/errata/rfc1724 + https://www.rfc-editor.org/errata/rfc1724/ 10.17487/RFC1724 @@ -45845,7 +45845,7 @@ INTERNET STANDARD DRAFT STANDARD Legacy - https://www.rfc-editor.org/errata/rfc1725 + https://www.rfc-editor.org/errata/rfc1725/ 10.17487/RFC1725 @@ -46246,7 +46246,7 @@ PROPOSED STANDARD PROPOSED STANDARD Legacy - https://www.rfc-editor.org/errata/rfc1738 + https://www.rfc-editor.org/errata/rfc1738/ 10.17487/RFC1738 @@ -46360,7 +46360,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc1741 + https://www.rfc-editor.org/errata/rfc1741/ 10.17487/RFC1741 @@ -46697,7 +46697,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc1751 + https://www.rfc-editor.org/errata/rfc1751/ 10.17487/RFC1751 @@ -46987,7 +46987,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc1760 + https://www.rfc-editor.org/errata/rfc1760/ 10.17487/RFC1760 @@ -47167,7 +47167,7 @@ IETF app mailext - https://www.rfc-editor.org/errata/rfc1766 + https://www.rfc-editor.org/errata/rfc1766/ 10.17487/RFC1766 @@ -47326,7 +47326,7 @@ DRAFT STANDARD DRAFT STANDARD Legacy - https://www.rfc-editor.org/errata/rfc1771 + https://www.rfc-editor.org/errata/rfc1771/ 10.17487/RFC1771 @@ -47423,7 +47423,7 @@ IETF rtg idr - https://www.rfc-editor.org/errata/rfc1774 + https://www.rfc-editor.org/errata/rfc1774/ 10.17487/RFC1774 @@ -48585,7 +48585,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc1810 + https://www.rfc-editor.org/errata/rfc1810/ 10.17487/RFC1810 @@ -48651,7 +48651,7 @@ IETF rtg rreq - https://www.rfc-editor.org/errata/rfc1812 + https://www.rfc-editor.org/errata/rfc1812/ 10.17487/RFC1812 @@ -48828,7 +48828,7 @@ HISTORIC BEST CURRENT PRACTICE Legacy - https://www.rfc-editor.org/errata/rfc1818 + https://www.rfc-editor.org/errata/rfc1818/ 10.17487/RFC1818 @@ -50008,7 +50008,7 @@ INFORMATIONAL IETF run - https://www.rfc-editor.org/errata/rfc1855 + https://www.rfc-editor.org/errata/rfc1855/ 10.17487/RFC1855 @@ -50335,7 +50335,7 @@ IETF app edi - https://www.rfc-editor.org/errata/rfc1865 + https://www.rfc-editor.org/errata/rfc1865/ 10.17487/RFC1865 @@ -50413,7 +50413,7 @@ IETF app html - https://www.rfc-editor.org/errata/rfc1867 + https://www.rfc-editor.org/errata/rfc1867/ 10.17487/RFC1867 @@ -50794,7 +50794,7 @@ HISTORIC INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc1878 + https://www.rfc-editor.org/errata/rfc1878/ 10.17487/RFC1878 @@ -51258,7 +51258,7 @@ IETF app notary - https://www.rfc-editor.org/errata/rfc1891 + https://www.rfc-editor.org/errata/rfc1891/ 10.17487/RFC1891 @@ -51367,7 +51367,7 @@ IETF app notary - https://www.rfc-editor.org/errata/rfc1894 + https://www.rfc-editor.org/errata/rfc1894/ 10.17487/RFC1894 @@ -52033,7 +52033,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc1912 + https://www.rfc-editor.org/errata/rfc1912/ 10.17487/RFC1912 @@ -52133,7 +52133,7 @@ BEST CURRENT PRACTICE BEST CURRENT PRACTICE Legacy - https://www.rfc-editor.org/errata/rfc1915 + https://www.rfc-editor.org/errata/rfc1915/ 10.17487/RFC1915 @@ -52253,7 +52253,7 @@ BEST CURRENT PRACTICE IETF cidrd - https://www.rfc-editor.org/errata/rfc1918 + https://www.rfc-editor.org/errata/rfc1918/ 10.17487/RFC1918 @@ -52456,7 +52456,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc1925 + https://www.rfc-editor.org/errata/rfc1925/ 10.17487/RFC1925 @@ -52509,7 +52509,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc1927 + https://www.rfc-editor.org/errata/rfc1927/ 10.17487/RFC1927 @@ -52553,7 +52553,7 @@ IETF sec aft - https://www.rfc-editor.org/errata/rfc1928 + https://www.rfc-editor.org/errata/rfc1928/ 10.17487/RFC1928 @@ -52804,7 +52804,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc1936 + https://www.rfc-editor.org/errata/rfc1936/ 10.17487/RFC1936 @@ -52908,7 +52908,7 @@ INTERNET STANDARD INTERNET STANDARD Legacy - https://www.rfc-editor.org/errata/rfc1939 + https://www.rfc-editor.org/errata/rfc1939/ 10.17487/RFC1939 @@ -53112,7 +53112,7 @@ IETF app http - https://www.rfc-editor.org/errata/rfc1945 + https://www.rfc-editor.org/errata/rfc1945/ 10.17487/RFC1945 @@ -53199,7 +53199,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc1948 + https://www.rfc-editor.org/errata/rfc1948/ 10.17487/RFC1948 @@ -53292,7 +53292,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc1951 + https://www.rfc-editor.org/errata/rfc1951/ 10.17487/RFC1951 @@ -53324,7 +53324,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc1952 + https://www.rfc-editor.org/errata/rfc1952/ 10.17487/RFC1952 @@ -53565,7 +53565,7 @@ IETF app asid - https://www.rfc-editor.org/errata/rfc1959 + https://www.rfc-editor.org/errata/rfc1959/ 10.17487/RFC1959 @@ -53733,7 +53733,7 @@ IETF sec cat - https://www.rfc-editor.org/errata/rfc1964 + https://www.rfc-editor.org/errata/rfc1964/ 10.17487/RFC1964 @@ -54232,7 +54232,7 @@ IETF int pppext - https://www.rfc-editor.org/errata/rfc1979 + https://www.rfc-editor.org/errata/rfc1979/ 10.17487/RFC1979 @@ -54302,7 +54302,7 @@ IETF int ipngwg - https://www.rfc-editor.org/errata/rfc1981 + https://www.rfc-editor.org/errata/rfc1981/ 10.17487/RFC1981 @@ -54434,7 +54434,7 @@ PROPOSED STANDARD PROPOSED STANDARD Legacy - https://www.rfc-editor.org/errata/rfc1985 + https://www.rfc-editor.org/errata/rfc1985/ 10.17487/RFC1985 @@ -54798,7 +54798,7 @@ IETF int dnsind - https://www.rfc-editor.org/errata/rfc1995 + https://www.rfc-editor.org/errata/rfc1995/ 10.17487/RFC1995 @@ -54870,7 +54870,7 @@ IETF rtg idr - https://www.rfc-editor.org/errata/rfc1997 + https://www.rfc-editor.org/errata/rfc1997/ 10.17487/RFC1997 @@ -55055,7 +55055,7 @@ IETF int mobileip - https://www.rfc-editor.org/errata/rfc2003 + https://www.rfc-editor.org/errata/rfc2003/ 10.17487/RFC2003 @@ -55084,7 +55084,7 @@ IETF int mobileip - https://www.rfc-editor.org/errata/rfc2004 + https://www.rfc-editor.org/errata/rfc2004/ 10.17487/RFC2004 @@ -55151,7 +55151,7 @@ IETF int mobileip - https://www.rfc-editor.org/errata/rfc2006 + https://www.rfc-editor.org/errata/rfc2006/ 10.17487/RFC2006 @@ -55457,7 +55457,7 @@ PROPOSED STANDARD PROPOSED STANDARD Legacy - https://www.rfc-editor.org/errata/rfc2015 + https://www.rfc-editor.org/errata/rfc2015/ 10.17487/RFC2015 @@ -55575,7 +55575,7 @@ IETF tsv tcplw - https://www.rfc-editor.org/errata/rfc2018 + https://www.rfc-editor.org/errata/rfc2018/ 10.17487/RFC2018 @@ -55671,7 +55671,7 @@ IETF ops rmonmib - https://www.rfc-editor.org/errata/rfc2021 + https://www.rfc-editor.org/errata/rfc2021/ 10.17487/RFC2021 @@ -55854,7 +55854,7 @@ IETF gen poised95 - https://www.rfc-editor.org/errata/rfc2026 + https://www.rfc-editor.org/errata/rfc2026/ 10.17487/RFC2026 @@ -55929,7 +55929,7 @@ IETF gen poised95 - https://www.rfc-editor.org/errata/rfc2028 + https://www.rfc-editor.org/errata/rfc2028/ 10.17487/RFC2028 @@ -55998,7 +55998,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc2030 + https://www.rfc-editor.org/errata/rfc2030/ 10.17487/RFC2030 @@ -56332,7 +56332,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc2040 + https://www.rfc-editor.org/errata/rfc2040/ 10.17487/RFC2040 @@ -56394,7 +56394,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc2042 + https://www.rfc-editor.org/errata/rfc2042/ 10.17487/RFC2042 @@ -56498,7 +56498,7 @@ IETF app 822ext - https://www.rfc-editor.org/errata/rfc2045 + https://www.rfc-editor.org/errata/rfc2045/ 10.17487/RFC2045 @@ -56542,7 +56542,7 @@ IETF app 822ext - https://www.rfc-editor.org/errata/rfc2046 + https://www.rfc-editor.org/errata/rfc2046/ 10.17487/RFC2046 @@ -56580,7 +56580,7 @@ IETF app 822ext - https://www.rfc-editor.org/errata/rfc2047 + https://www.rfc-editor.org/errata/rfc2047/ 10.17487/RFC2047 @@ -56668,7 +56668,7 @@ IETF app 822ext - https://www.rfc-editor.org/errata/rfc2049 + https://www.rfc-editor.org/errata/rfc2049/ 10.17487/RFC2049 @@ -57038,7 +57038,7 @@ PROPOSED STANDARD PROPOSED STANDARD Legacy - https://www.rfc-editor.org/errata/rfc2060 + https://www.rfc-editor.org/errata/rfc2060/ 10.17487/RFC2060 @@ -57361,7 +57361,7 @@ IETF app http - https://www.rfc-editor.org/errata/rfc2069 + https://www.rfc-editor.org/errata/rfc2069/ 10.17487/RFC2069 @@ -57599,7 +57599,7 @@ IETF app mailext - https://www.rfc-editor.org/errata/rfc2076 + https://www.rfc-editor.org/errata/rfc2076/ 10.17487/RFC2076 @@ -57738,7 +57738,7 @@ IETF rtg rip - https://www.rfc-editor.org/errata/rfc2080 + https://www.rfc-editor.org/errata/rfc2080/ 10.17487/RFC2080 @@ -58112,7 +58112,7 @@ IETF rtg rip - https://www.rfc-editor.org/errata/rfc2092 + https://www.rfc-editor.org/errata/rfc2092/ 10.17487/RFC2092 @@ -58353,7 +58353,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc2100 + https://www.rfc-editor.org/errata/rfc2100/ 10.17487/RFC2100 @@ -58487,7 +58487,7 @@ IETF sec ipsec - https://www.rfc-editor.org/errata/rfc2104 + https://www.rfc-editor.org/errata/rfc2104/ 10.17487/RFC2104 @@ -59028,7 +59028,7 @@ BEST CURRENT PRACTICE IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc2119 + https://www.rfc-editor.org/errata/rfc2119/ 10.17487/RFC2119 @@ -59260,7 +59260,7 @@ PROPOSED STANDARD PROPOSED STANDARD Legacy - https://www.rfc-editor.org/errata/rfc2126 + https://www.rfc-editor.org/errata/rfc2126/ 10.17487/RFC2126 @@ -59294,7 +59294,7 @@ IETF int isdnmib - https://www.rfc-editor.org/errata/rfc2127 + https://www.rfc-editor.org/errata/rfc2127/ 10.17487/RFC2127 @@ -59457,7 +59457,7 @@ IETF int dhc - https://www.rfc-editor.org/errata/rfc2131 + https://www.rfc-editor.org/errata/rfc2131/ 10.17487/RFC2131 @@ -59502,7 +59502,7 @@ IETF int dhc - https://www.rfc-editor.org/errata/rfc2132 + https://www.rfc-editor.org/errata/rfc2132/ 10.17487/RFC2132 @@ -59643,7 +59643,7 @@ IETF int dnsind - https://www.rfc-editor.org/errata/rfc2136 + https://www.rfc-editor.org/errata/rfc2136/ 10.17487/RFC2136 @@ -59819,7 +59819,7 @@ IETF app urn - https://www.rfc-editor.org/errata/rfc2141 + https://www.rfc-editor.org/errata/rfc2141/ 10.17487/RFC2141 @@ -59847,7 +59847,7 @@ PROPOSED STANDARD PROPOSED STANDARD Legacy - https://www.rfc-editor.org/errata/rfc2142 + https://www.rfc-editor.org/errata/rfc2142/ 10.17487/RFC2142 @@ -60155,7 +60155,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc2152 + https://www.rfc-editor.org/errata/rfc2152/ 10.17487/RFC2152 @@ -60222,7 +60222,7 @@ EXPERIMENTAL EXPERIMENTAL Legacy - https://www.rfc-editor.org/errata/rfc2154 + https://www.rfc-editor.org/errata/rfc2154/ 10.17487/RFC2154 @@ -60329,7 +60329,7 @@ IETF app mixer - https://www.rfc-editor.org/errata/rfc2157 + https://www.rfc-editor.org/errata/rfc2157/ 10.17487/RFC2157 @@ -61074,7 +61074,7 @@ IETF int dnsind - https://www.rfc-editor.org/errata/rfc2181 + https://www.rfc-editor.org/errata/rfc2181/ 10.17487/RFC2181 @@ -61117,7 +61117,7 @@ IETF int dnsind - https://www.rfc-editor.org/errata/rfc2182 + https://www.rfc-editor.org/errata/rfc2182/ 10.17487/RFC2182 @@ -61161,7 +61161,7 @@ PROPOSED STANDARD PROPOSED STANDARD Legacy - https://www.rfc-editor.org/errata/rfc2183 + https://www.rfc-editor.org/errata/rfc2183/ 10.17487/RFC2183 @@ -61199,7 +61199,7 @@ PROPOSED STANDARD PROPOSED STANDARD Legacy - https://www.rfc-editor.org/errata/rfc2184 + https://www.rfc-editor.org/errata/rfc2184/ 10.17487/RFC2184 @@ -61445,7 +61445,7 @@ PROPOSED STANDARD PROPOSED STANDARD Legacy - https://www.rfc-editor.org/errata/rfc2192 + https://www.rfc-editor.org/errata/rfc2192/ 10.17487/RFC2192 @@ -61583,7 +61583,7 @@ INFORMATIONAL IETF ssh - https://www.rfc-editor.org/errata/rfc2196 + https://www.rfc-editor.org/errata/rfc2196/ 10.17487/RFC2196 @@ -61788,7 +61788,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc2202 + https://www.rfc-editor.org/errata/rfc2202/ 10.17487/RFC2202 @@ -61834,7 +61834,7 @@ IETF tsv oncrpc - https://www.rfc-editor.org/errata/rfc2203 + https://www.rfc-editor.org/errata/rfc2203/ 10.17487/RFC2203 @@ -61921,7 +61921,7 @@ IETF tsv rsvp - https://www.rfc-editor.org/errata/rfc2205 + https://www.rfc-editor.org/errata/rfc2205/ 10.17487/RFC2205 @@ -62068,7 +62068,7 @@ IETF tsv rsvp - https://www.rfc-editor.org/errata/rfc2209 + https://www.rfc-editor.org/errata/rfc2209/ 10.17487/RFC2209 @@ -62194,7 +62194,7 @@ IETF tsv intserv - https://www.rfc-editor.org/errata/rfc2213 + https://www.rfc-editor.org/errata/rfc2213/ 10.17487/RFC2213 @@ -62321,7 +62321,7 @@ EXPERIMENTAL EXPERIMENTAL Legacy - https://www.rfc-editor.org/errata/rfc2217 + https://www.rfc-editor.org/errata/rfc2217/ 10.17487/RFC2217 @@ -62480,7 +62480,7 @@ PROPOSED STANDARD PROPOSED STANDARD Legacy - https://www.rfc-editor.org/errata/rfc2222 + https://www.rfc-editor.org/errata/rfc2222/ 10.17487/RFC2222 @@ -62522,7 +62522,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc2223 + https://www.rfc-editor.org/errata/rfc2223/ 10.17487/RFC2223 @@ -62730,7 +62730,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc2229 + https://www.rfc-editor.org/errata/rfc2229/ 10.17487/RFC2229 @@ -62800,7 +62800,7 @@ PROPOSED STANDARD PROPOSED STANDARD Legacy - https://www.rfc-editor.org/errata/rfc2231 + https://www.rfc-editor.org/errata/rfc2231/ 10.17487/RFC2231 @@ -62914,7 +62914,7 @@ IETF app drums - https://www.rfc-editor.org/errata/rfc2234 + https://www.rfc-editor.org/errata/rfc2234/ 10.17487/RFC2234 @@ -62982,7 +62982,7 @@ IETF rtg idmr - https://www.rfc-editor.org/errata/rfc2236 + https://www.rfc-editor.org/errata/rfc2236/ 10.17487/RFC2236 @@ -63235,7 +63235,7 @@ IETF app acap - https://www.rfc-editor.org/errata/rfc2244 + https://www.rfc-editor.org/errata/rfc2244/ 10.17487/RFC2244 @@ -63313,7 +63313,7 @@ IETF sec tls - https://www.rfc-editor.org/errata/rfc2246 + https://www.rfc-editor.org/errata/rfc2246/ 10.17487/RFC2246 @@ -63485,7 +63485,7 @@ IETF rai avt - https://www.rfc-editor.org/errata/rfc2250 + https://www.rfc-editor.org/errata/rfc2250/ 10.17487/RFC2250 @@ -63577,7 +63577,7 @@ IETF app asid - https://www.rfc-editor.org/errata/rfc2252 + https://www.rfc-editor.org/errata/rfc2252/ 10.17487/RFC2252 @@ -63625,7 +63625,7 @@ IETF app asid - https://www.rfc-editor.org/errata/rfc2253 + https://www.rfc-editor.org/errata/rfc2253/ 10.17487/RFC2253 @@ -63667,7 +63667,7 @@ IETF app asid - https://www.rfc-editor.org/errata/rfc2254 + https://www.rfc-editor.org/errata/rfc2254/ 10.17487/RFC2254 @@ -63893,7 +63893,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc2260 + https://www.rfc-editor.org/errata/rfc2260/ 10.17487/RFC2260 @@ -64184,7 +64184,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc2268 + https://www.rfc-editor.org/errata/rfc2268/ 10.17487/RFC2268 @@ -64531,7 +64531,7 @@ BEST CURRENT PRACTICE BEST CURRENT PRACTICE Legacy - https://www.rfc-editor.org/errata/rfc2277 + https://www.rfc-editor.org/errata/rfc2277/ 10.17487/RFC2277 @@ -64687,7 +64687,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc2281 + https://www.rfc-editor.org/errata/rfc2281/ 10.17487/RFC2281 @@ -64869,7 +64869,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc2286 + https://www.rfc-editor.org/errata/rfc2286/ 10.17487/RFC2286 @@ -64936,7 +64936,7 @@ IETF app urn - https://www.rfc-editor.org/errata/rfc2288 + https://www.rfc-editor.org/errata/rfc2288/ 10.17487/RFC2288 @@ -65233,7 +65233,7 @@ IETF app http - https://www.rfc-editor.org/errata/rfc2296 + https://www.rfc-editor.org/errata/rfc2296/ 10.17487/RFC2296 @@ -65629,7 +65629,7 @@ EXPERIMENTAL EXPERIMENTAL Legacy - https://www.rfc-editor.org/errata/rfc2307 + https://www.rfc-editor.org/errata/rfc2307/ 10.17487/RFC2307 @@ -65673,7 +65673,7 @@ IETF int dnsind - https://www.rfc-editor.org/errata/rfc2308 + https://www.rfc-editor.org/errata/rfc2308/ 10.17487/RFC2308 @@ -66018,7 +66018,7 @@ IETF int dnsind - https://www.rfc-editor.org/errata/rfc2317 + https://www.rfc-editor.org/errata/rfc2317/ 10.17487/RFC2317 @@ -66082,7 +66082,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc2319 + https://www.rfc-editor.org/errata/rfc2319/ 10.17487/RFC2319 @@ -66186,7 +66186,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc2322 + https://www.rfc-editor.org/errata/rfc2322/ 10.17487/RFC2322 @@ -66245,7 +66245,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc2324 + https://www.rfc-editor.org/errata/rfc2324/ 10.17487/RFC2324 @@ -66276,7 +66276,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc2325 + https://www.rfc-editor.org/errata/rfc2325/ 10.17487/RFC2325 @@ -66319,7 +66319,7 @@ IETF rai mmusic - https://www.rfc-editor.org/errata/rfc2326 + https://www.rfc-editor.org/errata/rfc2326/ 10.17487/RFC2326 @@ -66360,7 +66360,7 @@ IETF rai mmusic - https://www.rfc-editor.org/errata/rfc2327 + https://www.rfc-editor.org/errata/rfc2327/ 10.17487/RFC2327 @@ -66407,7 +66407,7 @@ IETF rtg ospf - https://www.rfc-editor.org/errata/rfc2328 + https://www.rfc-editor.org/errata/rfc2328/ 10.17487/RFC2328 @@ -66632,7 +66632,7 @@ IETF int ion - https://www.rfc-editor.org/errata/rfc2334 + https://www.rfc-editor.org/errata/rfc2334/ 10.17487/RFC2334 @@ -66920,7 +66920,7 @@ PROPOSED STANDARD PROPOSED STANDARD Legacy - https://www.rfc-editor.org/errata/rfc2342 + https://www.rfc-editor.org/errata/rfc2342/ 10.17487/RFC2342 @@ -67095,7 +67095,7 @@ DRAFT STANDARD DRAFT STANDARD Legacy - https://www.rfc-editor.org/errata/rfc2347 + https://www.rfc-editor.org/errata/rfc2347/ 10.17487/RFC2347 @@ -67205,7 +67205,7 @@ IETF ops grip - https://www.rfc-editor.org/errata/rfc2350 + https://www.rfc-editor.org/errata/rfc2350/ 10.17487/RFC2350 @@ -67361,7 +67361,7 @@ IETF app tn3270e - https://www.rfc-editor.org/errata/rfc2355 + https://www.rfc-editor.org/errata/rfc2355/ 10.17487/RFC2355 @@ -67562,7 +67562,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc2361 + https://www.rfc-editor.org/errata/rfc2361/ 10.17487/RFC2361 @@ -67629,7 +67629,7 @@ IETF rtg idmr - https://www.rfc-editor.org/errata/rfc2362 + https://www.rfc-editor.org/errata/rfc2362/ 10.17487/RFC2362 @@ -67825,7 +67825,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc2367 + https://www.rfc-editor.org/errata/rfc2367/ 10.17487/RFC2367 @@ -68047,7 +68047,7 @@ IETF int ipngwg - https://www.rfc-editor.org/errata/rfc2373 + https://www.rfc-editor.org/errata/rfc2373/ 10.17487/RFC2373 @@ -68203,7 +68203,7 @@ IETF app ids - https://www.rfc-editor.org/errata/rfc2377 + https://www.rfc-editor.org/errata/rfc2377/ 10.17487/RFC2377 @@ -68434,7 +68434,7 @@ PROPOSED STANDARD PROPOSED STANDARD Legacy - https://www.rfc-editor.org/errata/rfc2384 + https://www.rfc-editor.org/errata/rfc2384/ 10.17487/RFC2384 @@ -68473,7 +68473,7 @@ IETF rtg idr - https://www.rfc-editor.org/errata/rfc2385 + https://www.rfc-editor.org/errata/rfc2385/ 10.17487/RFC2385 @@ -68544,7 +68544,7 @@ IETF app mhtml - https://www.rfc-editor.org/errata/rfc2387 + https://www.rfc-editor.org/errata/rfc2387/ 10.17487/RFC2387 @@ -68574,7 +68574,7 @@ PROPOSED STANDARD PROPOSED STANDARD Legacy - https://www.rfc-editor.org/errata/rfc2388 + https://www.rfc-editor.org/errata/rfc2388/ 10.17487/RFC2388 @@ -68678,7 +68678,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc2391 + https://www.rfc-editor.org/errata/rfc2391/ 10.17487/RFC2391 @@ -68714,7 +68714,7 @@ IETF app mhtml - https://www.rfc-editor.org/errata/rfc2392 + https://www.rfc-editor.org/errata/rfc2392/ 10.17487/RFC2392 @@ -68820,7 +68820,7 @@ IETF int ippcp - https://www.rfc-editor.org/errata/rfc2395 + https://www.rfc-editor.org/errata/rfc2395/ 10.17487/RFC2395 @@ -68865,7 +68865,7 @@ DRAFT STANDARD DRAFT STANDARD Legacy - https://www.rfc-editor.org/errata/rfc2396 + https://www.rfc-editor.org/errata/rfc2396/ 10.17487/RFC2396 @@ -68893,7 +68893,7 @@ PROPOSED STANDARD PROPOSED STANDARD Legacy - https://www.rfc-editor.org/errata/rfc2397 + https://www.rfc-editor.org/errata/rfc2397/ 10.17487/RFC2397 @@ -69073,7 +69073,7 @@ IETF sec ipsec - https://www.rfc-editor.org/errata/rfc2402 + https://www.rfc-editor.org/errata/rfc2402/ 10.17487/RFC2402 @@ -69260,7 +69260,7 @@ IETF sec ipsec - https://www.rfc-editor.org/errata/rfc2407 + https://www.rfc-editor.org/errata/rfc2407/ 10.17487/RFC2407 @@ -69302,7 +69302,7 @@ IETF sec ipsec - https://www.rfc-editor.org/errata/rfc2408 + https://www.rfc-editor.org/errata/rfc2408/ 10.17487/RFC2408 @@ -69346,7 +69346,7 @@ IETF sec ipsec - https://www.rfc-editor.org/errata/rfc2409 + https://www.rfc-editor.org/errata/rfc2409/ 10.17487/RFC2409 @@ -69380,7 +69380,7 @@ IETF sec ipsec - https://www.rfc-editor.org/errata/rfc2410 + https://www.rfc-editor.org/errata/rfc2410/ 10.17487/RFC2410 @@ -69450,7 +69450,7 @@ IETF sec ipsec - https://www.rfc-editor.org/errata/rfc2412 + https://www.rfc-editor.org/errata/rfc2412/ 10.17487/RFC2412 @@ -69626,7 +69626,7 @@ PROPOSED STANDARD PROPOSED STANDARD Legacy - https://www.rfc-editor.org/errata/rfc2417 + https://www.rfc-editor.org/errata/rfc2417/ 10.17487/RFC2417 @@ -69670,7 +69670,7 @@ IETF gen Poisson - https://www.rfc-editor.org/errata/rfc2418 + https://www.rfc-editor.org/errata/rfc2418/ 10.17487/RFC2418 @@ -69773,7 +69773,7 @@ PROPOSED STANDARD PROPOSED STANDARD Legacy - https://www.rfc-editor.org/errata/rfc2421 + https://www.rfc-editor.org/errata/rfc2421/ 10.17487/RFC2421 @@ -69921,7 +69921,7 @@ IETF app asid - https://www.rfc-editor.org/errata/rfc2425 + https://www.rfc-editor.org/errata/rfc2425/ 10.17487/RFC2425 @@ -69959,7 +69959,7 @@ IETF app asid - https://www.rfc-editor.org/errata/rfc2426 + https://www.rfc-editor.org/errata/rfc2426/ 10.17487/RFC2426 @@ -70038,7 +70038,7 @@ IETF app ftpext - https://www.rfc-editor.org/errata/rfc2428 + https://www.rfc-editor.org/errata/rfc2428/ 10.17487/RFC2428 @@ -70234,7 +70234,7 @@ IETF int pppext - https://www.rfc-editor.org/errata/rfc2433 + https://www.rfc-editor.org/errata/rfc2433/ 10.17487/RFC2433 @@ -70318,7 +70318,7 @@ IETF rai avt - https://www.rfc-editor.org/errata/rfc2435 + https://www.rfc-editor.org/errata/rfc2435/ 10.17487/RFC2435 @@ -70470,7 +70470,7 @@ IETF rtg idr - https://www.rfc-editor.org/errata/rfc2439 + https://www.rfc-editor.org/errata/rfc2439/ 10.17487/RFC2439 @@ -70675,7 +70675,7 @@ IETF app calsch - https://www.rfc-editor.org/errata/rfc2445 + https://www.rfc-editor.org/errata/rfc2445/ 10.17487/RFC2445 @@ -70717,7 +70717,7 @@ IETF app calsch - https://www.rfc-editor.org/errata/rfc2446 + https://www.rfc-editor.org/errata/rfc2446/ 10.17487/RFC2446 @@ -70965,7 +70965,7 @@ IETF rtg ripv2 - https://www.rfc-editor.org/errata/rfc2453 + https://www.rfc-editor.org/errata/rfc2453/ 10.17487/RFC2453 @@ -71190,7 +71190,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc2459 + https://www.rfc-editor.org/errata/rfc2459/ 10.17487/RFC2459 @@ -71243,7 +71243,7 @@ IETF int ipngwg - https://www.rfc-editor.org/errata/rfc2460 + https://www.rfc-editor.org/errata/rfc2460/ 10.17487/RFC2460 @@ -71327,7 +71327,7 @@ IETF int ipngwg - https://www.rfc-editor.org/errata/rfc2462 + https://www.rfc-editor.org/errata/rfc2462/ 10.17487/RFC2462 @@ -71404,7 +71404,7 @@ IETF int ipngwg - https://www.rfc-editor.org/errata/rfc2464 + https://www.rfc-editor.org/errata/rfc2464/ 10.17487/RFC2464 @@ -71775,7 +71775,7 @@ IETF tsv diffserv - https://www.rfc-editor.org/errata/rfc2474 + https://www.rfc-editor.org/errata/rfc2474/ 10.17487/RFC2474 @@ -72181,7 +72181,7 @@ IETF ops roamops - https://www.rfc-editor.org/errata/rfc2486 + https://www.rfc-editor.org/errata/rfc2486/ 10.17487/RFC2486 @@ -72254,7 +72254,7 @@ IETF tsv tcpsat - https://www.rfc-editor.org/errata/rfc2488 + https://www.rfc-editor.org/errata/rfc2488/ 10.17487/RFC2488 @@ -72290,7 +72290,7 @@ IETF int dhc - https://www.rfc-editor.org/errata/rfc2489 + https://www.rfc-editor.org/errata/rfc2489/ 10.17487/RFC2489 @@ -72417,7 +72417,7 @@ IETF int ion - https://www.rfc-editor.org/errata/rfc2492 + https://www.rfc-editor.org/errata/rfc2492/ 10.17487/RFC2492 @@ -73269,7 +73269,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc2516 + https://www.rfc-editor.org/errata/rfc2516/ 10.17487/RFC2516 @@ -73349,7 +73349,7 @@ IETF app webdav - https://www.rfc-editor.org/errata/rfc2518 + https://www.rfc-editor.org/errata/rfc2518/ 10.17487/RFC2518 @@ -73635,7 +73635,7 @@ IETF int ipngwg - https://www.rfc-editor.org/errata/rfc2526 + https://www.rfc-editor.org/errata/rfc2526/ 10.17487/RFC2526 @@ -73672,7 +73672,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc2527 + https://www.rfc-editor.org/errata/rfc2527/ 10.17487/RFC2527 @@ -73969,7 +73969,7 @@ IETF sec dnssec - https://www.rfc-editor.org/errata/rfc2535 + https://www.rfc-editor.org/errata/rfc2535/ 10.17487/RFC2535 @@ -74295,7 +74295,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc2544 + https://www.rfc-editor.org/errata/rfc2544/ 10.17487/RFC2544 @@ -74435,7 +74435,7 @@ IETF ops radius - https://www.rfc-editor.org/errata/rfc2548 + https://www.rfc-editor.org/errata/rfc2548/ 10.17487/RFC2548 @@ -74468,7 +74468,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc2549 + https://www.rfc-editor.org/errata/rfc2549/ 10.17487/RFC2549 @@ -74504,7 +74504,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc2550 + https://www.rfc-editor.org/errata/rfc2550/ 10.17487/RFC2550 @@ -74756,7 +74756,7 @@ IETF app mhtml - https://www.rfc-editor.org/errata/rfc2557 + https://www.rfc-editor.org/errata/rfc2557/ 10.17487/RFC2557 @@ -74884,7 +74884,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc2560 + https://www.rfc-editor.org/errata/rfc2560/ 10.17487/RFC2560 @@ -75068,7 +75068,7 @@ IETF app ipp - https://www.rfc-editor.org/errata/rfc2565 + https://www.rfc-editor.org/errata/rfc2565/ 10.17487/RFC2565 @@ -75522,7 +75522,7 @@ IETF ops snmpv3 - https://www.rfc-editor.org/errata/rfc2576 + https://www.rfc-editor.org/errata/rfc2576/ 10.17487/RFC2576 @@ -75648,7 +75648,7 @@ INTERNET STANDARD INTERNET STANDARD Legacy - https://www.rfc-editor.org/errata/rfc2579 + https://www.rfc-editor.org/errata/rfc2579/ 10.17487/RFC2579 @@ -75736,7 +75736,7 @@ IETF tsv tcpimpl - https://www.rfc-editor.org/errata/rfc2581 + https://www.rfc-editor.org/errata/rfc2581/ 10.17487/RFC2581 @@ -75879,7 +75879,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc2585 + https://www.rfc-editor.org/errata/rfc2585/ 10.17487/RFC2585 @@ -76241,7 +76241,7 @@ PROPOSED STANDARD PROPOSED STANDARD Legacy - https://www.rfc-editor.org/errata/rfc2595 + https://www.rfc-editor.org/errata/rfc2595/ 10.17487/RFC2595 @@ -76323,7 +76323,7 @@ IETF tsv diffserv - https://www.rfc-editor.org/errata/rfc2597 + https://www.rfc-editor.org/errata/rfc2597/ 10.17487/RFC2597 @@ -76365,7 +76365,7 @@ IETF tsv diffserv - https://www.rfc-editor.org/errata/rfc2598 + https://www.rfc-editor.org/errata/rfc2598/ 10.17487/RFC2598 @@ -76622,7 +76622,7 @@ IETF int dnsind - https://www.rfc-editor.org/errata/rfc2606 + https://www.rfc-editor.org/errata/rfc2606/ 10.17487/RFC2606 @@ -76701,7 +76701,7 @@ IETF int svrloc - https://www.rfc-editor.org/errata/rfc2608 + https://www.rfc-editor.org/errata/rfc2608/ 10.17487/RFC2608 @@ -77025,7 +77025,7 @@ IETF app http - https://www.rfc-editor.org/errata/rfc2616 + https://www.rfc-editor.org/errata/rfc2616/ 10.17487/RFC2616 @@ -77083,7 +77083,7 @@ IETF app http - https://www.rfc-editor.org/errata/rfc2617 + https://www.rfc-editor.org/errata/rfc2617/ 10.17487/RFC2617 @@ -77304,7 +77304,7 @@ IETF ops rps - https://www.rfc-editor.org/errata/rfc2622 + https://www.rfc-editor.org/errata/rfc2622/ 10.17487/RFC2622 @@ -77404,7 +77404,7 @@ IETF int ipfc - https://www.rfc-editor.org/errata/rfc2625 + https://www.rfc-editor.org/errata/rfc2625/ 10.17487/RFC2625 @@ -77432,7 +77432,7 @@ IETF ops 2000 - https://www.rfc-editor.org/errata/rfc2626 + https://www.rfc-editor.org/errata/rfc2626/ 10.17487/RFC2626 @@ -77558,7 +77558,7 @@ IETF sec smime - https://www.rfc-editor.org/errata/rfc2630 + https://www.rfc-editor.org/errata/rfc2630/ 10.17487/RFC2630 @@ -77589,7 +77589,7 @@ IETF sec smime - https://www.rfc-editor.org/errata/rfc2631 + https://www.rfc-editor.org/errata/rfc2631/ 10.17487/RFC2631 @@ -77663,7 +77663,7 @@ IETF sec smime - https://www.rfc-editor.org/errata/rfc2633 + https://www.rfc-editor.org/errata/rfc2633/ 10.17487/RFC2633 @@ -77698,7 +77698,7 @@ IETF sec smime - https://www.rfc-editor.org/errata/rfc2634 + https://www.rfc-editor.org/errata/rfc2634/ 10.17487/RFC2634 @@ -77814,7 +77814,7 @@ IETF int pppext - https://www.rfc-editor.org/errata/rfc2637 + https://www.rfc-editor.org/errata/rfc2637/ 10.17487/RFC2637 @@ -77851,7 +77851,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc2638 + https://www.rfc-editor.org/errata/rfc2638/ 10.17487/RFC2638 @@ -77920,7 +77920,7 @@ IETF app ftpext - https://www.rfc-editor.org/errata/rfc2640 + https://www.rfc-editor.org/errata/rfc2640/ 10.17487/RFC2640 @@ -78076,7 +78076,7 @@ PROPOSED STANDARD PROPOSED STANDARD Legacy - https://www.rfc-editor.org/errata/rfc2645 + https://www.rfc-editor.org/errata/rfc2645/ 10.17487/RFC2645 @@ -78180,7 +78180,7 @@ IETF app urn - https://www.rfc-editor.org/errata/rfc2648 + https://www.rfc-editor.org/errata/rfc2648/ 10.17487/RFC2648 @@ -78445,7 +78445,7 @@ IETF app find - https://www.rfc-editor.org/errata/rfc2655 + https://www.rfc-editor.org/errata/rfc2655/ 10.17487/RFC2655 @@ -78475,7 +78475,7 @@ IETF app find - https://www.rfc-editor.org/errata/rfc2656 + https://www.rfc-editor.org/errata/rfc2656/ 10.17487/RFC2656 @@ -78649,7 +78649,7 @@ IETF int pppext - https://www.rfc-editor.org/errata/rfc2661 + https://www.rfc-editor.org/errata/rfc2661/ 10.17487/RFC2661 @@ -78683,7 +78683,7 @@ IETF ops adslmib - https://www.rfc-editor.org/errata/rfc2662 + https://www.rfc-editor.org/errata/rfc2662/ 10.17487/RFC2662 @@ -78718,7 +78718,7 @@ IETF tsv nat - https://www.rfc-editor.org/errata/rfc2663 + https://www.rfc-editor.org/errata/rfc2663/ 10.17487/RFC2663 @@ -79091,7 +79091,7 @@ IETF int dnsind - https://www.rfc-editor.org/errata/rfc2673 + https://www.rfc-editor.org/errata/rfc2673/ 10.17487/RFC2673 @@ -79180,7 +79180,7 @@ IETF int ipngwg - https://www.rfc-editor.org/errata/rfc2675 + https://www.rfc-editor.org/errata/rfc2675/ 10.17487/RFC2675 @@ -79227,7 +79227,7 @@ IETF rtg ospf - https://www.rfc-editor.org/errata/rfc2676 + https://www.rfc-editor.org/errata/rfc2676/ 10.17487/RFC2676 @@ -79336,7 +79336,7 @@ IETF ops ippm - https://www.rfc-editor.org/errata/rfc2679 + https://www.rfc-editor.org/errata/rfc2679/ 10.17487/RFC2679 @@ -79374,7 +79374,7 @@ IETF ops ippm - https://www.rfc-editor.org/errata/rfc2680 + https://www.rfc-editor.org/errata/rfc2680/ 10.17487/RFC2680 @@ -79410,7 +79410,7 @@ IETF ops ippm - https://www.rfc-editor.org/errata/rfc2681 + https://www.rfc-editor.org/errata/rfc2681/ 10.17487/RFC2681 @@ -79474,7 +79474,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc2683 + https://www.rfc-editor.org/errata/rfc2683/ 10.17487/RFC2683 @@ -79843,7 +79843,7 @@ IETF tsv nat - https://www.rfc-editor.org/errata/rfc2694 + https://www.rfc-editor.org/errata/rfc2694/ 10.17487/RFC2694 @@ -79915,7 +79915,7 @@ IETF app ldapext - https://www.rfc-editor.org/errata/rfc2696 + https://www.rfc-editor.org/errata/rfc2696/ 10.17487/RFC2696 @@ -79982,7 +79982,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc2698 + https://www.rfc-editor.org/errata/rfc2698/ 10.17487/RFC2698 @@ -80033,7 +80033,7 @@ HISTORIC INTERNET STANDARD Legacy - https://www.rfc-editor.org/errata/rfc2700 + https://www.rfc-editor.org/errata/rfc2700/ 10.17487/RFC2700 @@ -80106,7 +80106,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc2702 + https://www.rfc-editor.org/errata/rfc2702/ 10.17487/RFC2702 @@ -80463,7 +80463,7 @@ IETF sec tls - https://www.rfc-editor.org/errata/rfc2712 + https://www.rfc-editor.org/errata/rfc2712/ 10.17487/RFC2712 @@ -81163,7 +81163,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc2731 + https://www.rfc-editor.org/errata/rfc2731/ 10.17487/RFC2731 @@ -81209,7 +81209,7 @@ IETF int ipngwg - https://www.rfc-editor.org/errata/rfc2732 + https://www.rfc-editor.org/errata/rfc2732/ 10.17487/RFC2732 @@ -81402,7 +81402,7 @@ IETF ops entmib - https://www.rfc-editor.org/errata/rfc2737 + https://www.rfc-editor.org/errata/rfc2737/ 10.17487/RFC2737 @@ -81474,7 +81474,7 @@ IETF app calsch - https://www.rfc-editor.org/errata/rfc2739 + https://www.rfc-editor.org/errata/rfc2739/ 10.17487/RFC2739 @@ -81514,7 +81514,7 @@ IETF rtg ospf - https://www.rfc-editor.org/errata/rfc2740 + https://www.rfc-editor.org/errata/rfc2740/ 10.17487/RFC2740 @@ -81628,7 +81628,7 @@ IETF sec cat - https://www.rfc-editor.org/errata/rfc2743 + https://www.rfc-editor.org/errata/rfc2743/ 10.17487/RFC2743 @@ -81665,7 +81665,7 @@ IETF sec cat - https://www.rfc-editor.org/errata/rfc2744 + https://www.rfc-editor.org/errata/rfc2744/ 10.17487/RFC2744 @@ -81782,7 +81782,7 @@ IETF int vgmib - https://www.rfc-editor.org/errata/rfc2747 + https://www.rfc-editor.org/errata/rfc2747/ 10.17487/RFC2747 @@ -82242,7 +82242,7 @@ IETF int pppext - https://www.rfc-editor.org/errata/rfc2759 + https://www.rfc-editor.org/errata/rfc2759/ 10.17487/RFC2759 @@ -82410,7 +82410,7 @@ IETF rtg isis - https://www.rfc-editor.org/errata/rfc2763 + https://www.rfc-editor.org/errata/rfc2763/ 10.17487/RFC2763 @@ -82450,7 +82450,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc2764 + https://www.rfc-editor.org/errata/rfc2764/ 10.17487/RFC2764 @@ -83122,7 +83122,7 @@ IETF int dnsext - https://www.rfc-editor.org/errata/rfc2782 + https://www.rfc-editor.org/errata/rfc2782/ 10.17487/RFC2782 @@ -83208,7 +83208,7 @@ PROPOSED STANDARD PROPOSED STANDARD Legacy - https://www.rfc-editor.org/errata/rfc2784 + https://www.rfc-editor.org/errata/rfc2784/ 10.17487/RFC2784 @@ -83268,7 +83268,7 @@ EXPERIMENTAL EXPERIMENTAL Legacy - https://www.rfc-editor.org/errata/rfc2786 + https://www.rfc-editor.org/errata/rfc2786/ 10.17487/RFC2786 @@ -83652,7 +83652,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc2797 + https://www.rfc-editor.org/errata/rfc2797/ 10.17487/RFC2797 @@ -83806,7 +83806,7 @@ IETF app trade - https://www.rfc-editor.org/errata/rfc2802 + https://www.rfc-editor.org/errata/rfc2802/ 10.17487/RFC2802 @@ -83874,7 +83874,7 @@ INFORMATIONAL INFORMATIONAL IAB - https://www.rfc-editor.org/errata/rfc2804 + https://www.rfc-editor.org/errata/rfc2804/ 10.17487/RFC2804 @@ -84067,7 +84067,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc2810 + https://www.rfc-editor.org/errata/rfc2810/ 10.17487/RFC2810 @@ -84130,7 +84130,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc2812 + https://www.rfc-editor.org/errata/rfc2812/ 10.17487/RFC2812 @@ -84162,7 +84162,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc2813 + https://www.rfc-editor.org/errata/rfc2813/ 10.17487/RFC2813 @@ -84329,7 +84329,7 @@ IETF sec tls - https://www.rfc-editor.org/errata/rfc2817 + https://www.rfc-editor.org/errata/rfc2817/ 10.17487/RFC2817 @@ -84369,7 +84369,7 @@ IETF sec tls - https://www.rfc-editor.org/errata/rfc2818 + https://www.rfc-editor.org/errata/rfc2818/ 10.17487/RFC2818 @@ -84405,7 +84405,7 @@ IETF ops rmonmib - https://www.rfc-editor.org/errata/rfc2819 + https://www.rfc-editor.org/errata/rfc2819/ 10.17487/RFC2819 @@ -84445,7 +84445,7 @@ IETF app ldapext - https://www.rfc-editor.org/errata/rfc2820 + https://www.rfc-editor.org/errata/rfc2820/ 10.17487/RFC2820 @@ -84486,7 +84486,7 @@ IETF app drums - https://www.rfc-editor.org/errata/rfc2821 + https://www.rfc-editor.org/errata/rfc2821/ 10.17487/RFC2821 @@ -84525,7 +84525,7 @@ IETF app drums - https://www.rfc-editor.org/errata/rfc2822 + https://www.rfc-editor.org/errata/rfc2822/ 10.17487/RFC2822 @@ -84633,7 +84633,7 @@ INFORMATIONAL INFORMATIONAL IAB - https://www.rfc-editor.org/errata/rfc2825 + https://www.rfc-editor.org/errata/rfc2825/ 10.17487/RFC2825 @@ -84661,7 +84661,7 @@ INFORMATIONAL INFORMATIONAL IAB - https://www.rfc-editor.org/errata/rfc2826 + https://www.rfc-editor.org/errata/rfc2826/ 10.17487/RFC2826 @@ -84704,7 +84704,7 @@ BEST CURRENT PRACTICE IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc2827 + https://www.rfc-editor.org/errata/rfc2827/ 10.17487/RFC2827 @@ -84970,7 +84970,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc2834 + https://www.rfc-editor.org/errata/rfc2834/ 10.17487/RFC2834 @@ -85140,7 +85140,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc2839 + https://www.rfc-editor.org/errata/rfc2839/ 10.17487/RFC2839 @@ -85394,7 +85394,7 @@ IETF app fax - https://www.rfc-editor.org/errata/rfc2846 + https://www.rfc-editor.org/errata/rfc2846/ 10.17487/RFC2846 @@ -85494,7 +85494,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc2849 + https://www.rfc-editor.org/errata/rfc2849/ 10.17487/RFC2849 @@ -85609,7 +85609,7 @@ PROPOSED STANDARD PROPOSED STANDARD Legacy - https://www.rfc-editor.org/errata/rfc2852 + https://www.rfc-editor.org/errata/rfc2852/ 10.17487/RFC2852 @@ -85829,7 +85829,7 @@ IETF rtg idr - https://www.rfc-editor.org/errata/rfc2858 + https://www.rfc-editor.org/errata/rfc2858/ 10.17487/RFC2858 @@ -85940,7 +85940,7 @@ IETF wit tsvwg - https://www.rfc-editor.org/errata/rfc2861 + https://www.rfc-editor.org/errata/rfc2861/ 10.17487/RFC2861 @@ -86015,7 +86015,7 @@ IETF int ifmib - https://www.rfc-editor.org/errata/rfc2863 + https://www.rfc-editor.org/errata/rfc2863/ 10.17487/RFC2863 @@ -86097,7 +86097,7 @@ IETF ops radius - https://www.rfc-editor.org/errata/rfc2865 + https://www.rfc-editor.org/errata/rfc2865/ 10.17487/RFC2865 @@ -86140,7 +86140,7 @@ IETF ops radius - https://www.rfc-editor.org/errata/rfc2866 + https://www.rfc-editor.org/errata/rfc2866/ 10.17487/RFC2866 @@ -86181,7 +86181,7 @@ IETF ops radius - https://www.rfc-editor.org/errata/rfc2867 + https://www.rfc-editor.org/errata/rfc2867/ 10.17487/RFC2867 @@ -86235,7 +86235,7 @@ IETF ops radius - https://www.rfc-editor.org/errata/rfc2868 + https://www.rfc-editor.org/errata/rfc2868/ 10.17487/RFC2868 @@ -86278,7 +86278,7 @@ IETF ops radius - https://www.rfc-editor.org/errata/rfc2869 + https://www.rfc-editor.org/errata/rfc2869/ 10.17487/RFC2869 @@ -86427,7 +86427,7 @@ PROPOSED STANDARD PROPOSED STANDARD Legacy - https://www.rfc-editor.org/errata/rfc2873 + https://www.rfc-editor.org/errata/rfc2873/ 10.17487/RFC2873 @@ -86536,7 +86536,7 @@ IETF sec smime - https://www.rfc-editor.org/errata/rfc2876 + https://www.rfc-editor.org/errata/rfc2876/ 10.17487/RFC2876 @@ -86791,7 +86791,7 @@ IETF wit tsvwg - https://www.rfc-editor.org/errata/rfc2883 + https://www.rfc-editor.org/errata/rfc2883/ 10.17487/RFC2883 @@ -87015,7 +87015,7 @@ IETF ops bmwg - https://www.rfc-editor.org/errata/rfc2889 + https://www.rfc-editor.org/errata/rfc2889/ 10.17487/RFC2889 @@ -87315,7 +87315,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc2898 + https://www.rfc-editor.org/errata/rfc2898/ 10.17487/RFC2898 @@ -87810,7 +87810,7 @@ IETF app ipp - https://www.rfc-editor.org/errata/rfc2910 + https://www.rfc-editor.org/errata/rfc2910/ 10.17487/RFC2910 @@ -87870,7 +87870,7 @@ IETF app ipp - https://www.rfc-editor.org/errata/rfc2911 + https://www.rfc-editor.org/errata/rfc2911/ 10.17487/RFC2911 @@ -88037,7 +88037,7 @@ IETF rai enum - https://www.rfc-editor.org/errata/rfc2916 + https://www.rfc-editor.org/errata/rfc2916/ 10.17487/RFC2916 @@ -88130,7 +88130,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc2919 + https://www.rfc-editor.org/errata/rfc2919/ 10.17487/RFC2919 @@ -88325,7 +88325,7 @@ IETF ops disman - https://www.rfc-editor.org/errata/rfc2925 + https://www.rfc-editor.org/errata/rfc2925/ 10.17487/RFC2925 @@ -88397,7 +88397,7 @@ IETF app schema - https://www.rfc-editor.org/errata/rfc2927 + https://www.rfc-editor.org/errata/rfc2927/ 10.17487/RFC2927 @@ -88802,7 +88802,7 @@ IETF app conneg - https://www.rfc-editor.org/errata/rfc2938 + https://www.rfc-editor.org/errata/rfc2938/ 10.17487/RFC2938 @@ -88843,7 +88843,7 @@ IETF int dhc - https://www.rfc-editor.org/errata/rfc2939 + https://www.rfc-editor.org/errata/rfc2939/ 10.17487/RFC2939 @@ -89527,7 +89527,7 @@ IETF rai sigtran - https://www.rfc-editor.org/errata/rfc2960 + https://www.rfc-editor.org/errata/rfc2960/ 10.17487/RFC2960 @@ -89611,7 +89611,7 @@ IETF tsv nat - https://www.rfc-editor.org/errata/rfc2962 + https://www.rfc-editor.org/errata/rfc2962/ 10.17487/RFC2962 @@ -89716,7 +89716,7 @@ IETF app http - https://www.rfc-editor.org/errata/rfc2965 + https://www.rfc-editor.org/errata/rfc2965/ 10.17487/RFC2965 @@ -90170,7 +90170,7 @@ BEST CURRENT PRACTICE BEST CURRENT PRACTICE Legacy - https://www.rfc-editor.org/errata/rfc2978 + https://www.rfc-editor.org/errata/rfc2978/ 10.17487/RFC2978 @@ -90264,7 +90264,7 @@ IETF ops disman - https://www.rfc-editor.org/errata/rfc2981 + https://www.rfc-editor.org/errata/rfc2981/ 10.17487/RFC2981 @@ -90390,7 +90390,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc2985 + https://www.rfc-editor.org/errata/rfc2985/ 10.17487/RFC2985 @@ -90498,7 +90498,7 @@ IETF wit tsvwg - https://www.rfc-editor.org/errata/rfc2988 + https://www.rfc-editor.org/errata/rfc2988/ 10.17487/RFC2988 @@ -91086,7 +91086,7 @@ PROPOSED STANDARD PROPOSED STANDARD Legacy - https://www.rfc-editor.org/errata/rfc3003 + https://www.rfc-editor.org/errata/rfc3003/ 10.17487/RFC3003 @@ -91378,7 +91378,7 @@ IETF wit nfsv4 - https://www.rfc-editor.org/errata/rfc3010 + https://www.rfc-editor.org/errata/rfc3010/ 10.17487/RFC3010 @@ -91558,7 +91558,7 @@ IETF rai megaco - https://www.rfc-editor.org/errata/rfc3015 + https://www.rfc-editor.org/errata/rfc3015/ 10.17487/RFC3015 @@ -91812,7 +91812,7 @@ IETF tsv nat - https://www.rfc-editor.org/errata/rfc3022 + https://www.rfc-editor.org/errata/rfc3022/ 10.17487/RFC3022 @@ -91862,7 +91862,7 @@ PROPOSED STANDARD PROPOSED STANDARD Legacy - https://www.rfc-editor.org/errata/rfc3023 + https://www.rfc-editor.org/errata/rfc3023/ 10.17487/RFC3023 @@ -91897,7 +91897,7 @@ IETF int mobileip - https://www.rfc-editor.org/errata/rfc3024 + https://www.rfc-editor.org/errata/rfc3024/ 10.17487/RFC3024 @@ -92033,7 +92033,7 @@ PROPOSED STANDARD PROPOSED STANDARD Legacy - https://www.rfc-editor.org/errata/rfc3028 + https://www.rfc-editor.org/errata/rfc3028/ 10.17487/RFC3028 @@ -92076,7 +92076,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc3029 + https://www.rfc-editor.org/errata/rfc3029/ 10.17487/RFC3029 @@ -92108,7 +92108,7 @@ PROPOSED STANDARD PROPOSED STANDARD Legacy - https://www.rfc-editor.org/errata/rfc3030 + https://www.rfc-editor.org/errata/rfc3030/ 10.17487/RFC3030 @@ -92147,7 +92147,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc3031 + https://www.rfc-editor.org/errata/rfc3031/ 10.17487/RFC3031 @@ -92205,7 +92205,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc3032 + https://www.rfc-editor.org/errata/rfc3032/ 10.17487/RFC3032 @@ -92362,7 +92362,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc3036 + https://www.rfc-editor.org/errata/rfc3036/ 10.17487/RFC3036 @@ -92395,7 +92395,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc3037 + https://www.rfc-editor.org/errata/rfc3037/ 10.17487/RFC3037 @@ -92554,7 +92554,7 @@ IETF int ipngwg - https://www.rfc-editor.org/errata/rfc3041 + https://www.rfc-editor.org/errata/rfc3041/ 10.17487/RFC3041 @@ -92739,7 +92739,7 @@ IETF rai avt - https://www.rfc-editor.org/errata/rfc3047 + https://www.rfc-editor.org/errata/rfc3047/ 10.17487/RFC3047 @@ -92913,7 +92913,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc3052 + https://www.rfc-editor.org/errata/rfc3052/ 10.17487/RFC3052 @@ -93058,7 +93058,7 @@ IETF ops ngtrans - https://www.rfc-editor.org/errata/rfc3056 + https://www.rfc-editor.org/errata/rfc3056/ 10.17487/RFC3056 @@ -93145,7 +93145,7 @@ IETF sec smime - https://www.rfc-editor.org/errata/rfc3058 + https://www.rfc-editor.org/errata/rfc3058/ 10.17487/RFC3058 @@ -93247,7 +93247,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc3061 + https://www.rfc-editor.org/errata/rfc3061/ 10.17487/RFC3061 @@ -93274,7 +93274,7 @@ PROPOSED STANDARD PROPOSED STANDARD Legacy - https://www.rfc-editor.org/errata/rfc3062 + https://www.rfc-editor.org/errata/rfc3062/ 10.17487/RFC3062 @@ -93382,7 +93382,7 @@ IETF rtg idr - https://www.rfc-editor.org/errata/rfc3065 + https://www.rfc-editor.org/errata/rfc3065/ 10.17487/RFC3065 @@ -93415,7 +93415,7 @@ BEST CURRENT PRACTICE BEST CURRENT PRACTICE Legacy - https://www.rfc-editor.org/errata/rfc3066 + https://www.rfc-editor.org/errata/rfc3066/ 10.17487/RFC3066 @@ -93519,7 +93519,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc3069 + https://www.rfc-editor.org/errata/rfc3069/ 10.17487/RFC3069 @@ -93886,7 +93886,7 @@ IETF app beep - https://www.rfc-editor.org/errata/rfc3080 + https://www.rfc-editor.org/errata/rfc3080/ 10.17487/RFC3080 @@ -93980,7 +93980,7 @@ IETF ops ipcdn - https://www.rfc-editor.org/errata/rfc3083 + https://www.rfc-editor.org/errata/rfc3083/ 10.17487/RFC3083 @@ -94258,7 +94258,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc3091 + https://www.rfc-editor.org/errata/rfc3091/ 10.17487/RFC3091 @@ -94287,7 +94287,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc3092 + https://www.rfc-editor.org/errata/rfc3092/ 10.17487/RFC3092 @@ -94600,7 +94600,7 @@ IETF rtg ospf - https://www.rfc-editor.org/errata/rfc3101 + https://www.rfc-editor.org/errata/rfc3101/ 10.17487/RFC3101 @@ -94717,7 +94717,7 @@ IETF tsv nat - https://www.rfc-editor.org/errata/rfc3104 + https://www.rfc-editor.org/errata/rfc3104/ 10.17487/RFC3104 @@ -94836,7 +94836,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc3107 + https://www.rfc-editor.org/errata/rfc3107/ 10.17487/RFC3107 @@ -94873,7 +94873,7 @@ IETF rai mmusic - https://www.rfc-editor.org/errata/rfc3108 + https://www.rfc-editor.org/errata/rfc3108/ 10.17487/RFC3108 @@ -94946,7 +94946,7 @@ IETF int dnsext - https://www.rfc-editor.org/errata/rfc3110 + https://www.rfc-editor.org/errata/rfc3110/ 10.17487/RFC3110 @@ -95207,7 +95207,7 @@ IETF int dhc - https://www.rfc-editor.org/errata/rfc3118 + https://www.rfc-editor.org/errata/rfc3118/ 10.17487/RFC3118 @@ -95241,7 +95241,7 @@ IETF rai avt - https://www.rfc-editor.org/errata/rfc3119 + https://www.rfc-editor.org/errata/rfc3119/ 10.17487/RFC3119 @@ -95337,7 +95337,7 @@ IETF int ipngwg - https://www.rfc-editor.org/errata/rfc3122 + https://www.rfc-editor.org/errata/rfc3122/ 10.17487/RFC3122 @@ -95404,7 +95404,7 @@ IETF tsv ecm - https://www.rfc-editor.org/errata/rfc3124 + https://www.rfc-editor.org/errata/rfc3124/ 10.17487/RFC3124 @@ -95445,7 +95445,7 @@ IETF sec smime - https://www.rfc-editor.org/errata/rfc3125 + https://www.rfc-editor.org/errata/rfc3125/ 10.17487/RFC3125 @@ -95487,7 +95487,7 @@ IETF sec smime - https://www.rfc-editor.org/errata/rfc3126 + https://www.rfc-editor.org/errata/rfc3126/ 10.17487/RFC3126 @@ -96165,7 +96165,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc3143 + https://www.rfc-editor.org/errata/rfc3143/ 10.17487/RFC3143 @@ -96667,7 +96667,7 @@ IETF sec openpgp - https://www.rfc-editor.org/errata/rfc3156 + https://www.rfc-editor.org/errata/rfc3156/ 10.17487/RFC3156 @@ -96872,7 +96872,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc3161 + https://www.rfc-editor.org/errata/rfc3161/ 10.17487/RFC3161 @@ -96910,7 +96910,7 @@ PROPOSED STANDARD PROPOSED STANDARD Legacy - https://www.rfc-editor.org/errata/rfc3162 + https://www.rfc-editor.org/errata/rfc3162/ 10.17487/RFC3162 @@ -97008,7 +97008,7 @@ IETF ops disman - https://www.rfc-editor.org/errata/rfc3165 + https://www.rfc-editor.org/errata/rfc3165/ 10.17487/RFC3165 @@ -97128,7 +97128,7 @@ IETF wit tsvwg - https://www.rfc-editor.org/errata/rfc3168 + https://www.rfc-editor.org/errata/rfc3168/ 10.17487/RFC3168 @@ -97241,7 +97241,7 @@ IETF ops mboned - https://www.rfc-editor.org/errata/rfc3171 + https://www.rfc-editor.org/errata/rfc3171/ 10.17487/RFC3171 @@ -97354,7 +97354,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc3174 + https://www.rfc-editor.org/errata/rfc3174/ 10.17487/RFC3174 @@ -97578,7 +97578,7 @@ IETF ops mboned - https://www.rfc-editor.org/errata/rfc3180 + https://www.rfc-editor.org/errata/rfc3180/ 10.17487/RFC3180 @@ -97661,7 +97661,7 @@ IETF ops rap - https://www.rfc-editor.org/errata/rfc3182 + https://www.rfc-editor.org/errata/rfc3182/ 10.17487/RFC3182 @@ -97696,7 +97696,7 @@ IETF sec smime - https://www.rfc-editor.org/errata/rfc3183 + https://www.rfc-editor.org/errata/rfc3183/ 10.17487/RFC3183 @@ -97910,7 +97910,7 @@ IETF rai avt - https://www.rfc-editor.org/errata/rfc3189 + https://www.rfc-editor.org/errata/rfc3189/ 10.17487/RFC3189 @@ -98179,7 +98179,7 @@ IETF app ipp - https://www.rfc-editor.org/errata/rfc3196 + https://www.rfc-editor.org/errata/rfc3196/ 10.17487/RFC3196 @@ -98453,7 +98453,7 @@ IETF rai sip - https://www.rfc-editor.org/errata/rfc3204 + https://www.rfc-editor.org/errata/rfc3204/ 10.17487/RFC3204 @@ -98485,7 +98485,7 @@ BEST CURRENT PRACTICE BEST CURRENT PRACTICE Legacy - https://www.rfc-editor.org/errata/rfc3205 + https://www.rfc-editor.org/errata/rfc3205/ 10.17487/RFC3205 @@ -98547,7 +98547,7 @@ PROPOSED STANDARD PROPOSED STANDARD Legacy - https://www.rfc-editor.org/errata/rfc3207 + https://www.rfc-editor.org/errata/rfc3207/ 10.17487/RFC3207 @@ -98613,7 +98613,7 @@ EXPERIMENTAL EXPERIMENTAL Legacy - https://www.rfc-editor.org/errata/rfc3208 + https://www.rfc-editor.org/errata/rfc3208/ 10.17487/RFC3208 @@ -98670,7 +98670,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc3209 + https://www.rfc-editor.org/errata/rfc3209/ 10.17487/RFC3209 @@ -99030,7 +99030,7 @@ IETF sec smime - https://www.rfc-editor.org/errata/rfc3217 + https://www.rfc-editor.org/errata/rfc3217/ 10.17487/RFC3217 @@ -99059,7 +99059,7 @@ IETF sec smime - https://www.rfc-editor.org/errata/rfc3218 + https://www.rfc-editor.org/errata/rfc3218/ 10.17487/RFC3218 @@ -99100,7 +99100,7 @@ IETF rai iptel - https://www.rfc-editor.org/errata/rfc3219 + https://www.rfc-editor.org/errata/rfc3219/ 10.17487/RFC3219 @@ -99137,7 +99137,7 @@ IETF int mobileip - https://www.rfc-editor.org/errata/rfc3220 + https://www.rfc-editor.org/errata/rfc3220/ 10.17487/RFC3220 @@ -99230,7 +99230,7 @@ PROPOSED STANDARD PROPOSED STANDARD Legacy - https://www.rfc-editor.org/errata/rfc3224 + https://www.rfc-editor.org/errata/rfc3224/ 10.17487/RFC3224 @@ -99306,7 +99306,7 @@ IETF int dnsext - https://www.rfc-editor.org/errata/rfc3226 + https://www.rfc-editor.org/errata/rfc3226/ 10.17487/RFC3226 @@ -99341,7 +99341,7 @@ IETF ops grip - https://www.rfc-editor.org/errata/rfc3227 + https://www.rfc-editor.org/errata/rfc3227/ 10.17487/RFC3227 @@ -99787,7 +99787,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc3240 + https://www.rfc-editor.org/errata/rfc3240/ 10.17487/RFC3240 @@ -99965,7 +99965,7 @@ INFORMATIONAL INFORMATIONAL IAB - https://www.rfc-editor.org/errata/rfc3245 + https://www.rfc-editor.org/errata/rfc3245/ 10.17487/RFC3245 @@ -100083,7 +100083,7 @@ IETF tsv diffserv - https://www.rfc-editor.org/errata/rfc3247 + https://www.rfc-editor.org/errata/rfc3247/ 10.17487/RFC3247 @@ -100319,7 +100319,7 @@ IETF app deltav - https://www.rfc-editor.org/errata/rfc3253 + https://www.rfc-editor.org/errata/rfc3253/ 10.17487/RFC3253 @@ -100555,7 +100555,7 @@ IETF tsv diffserv - https://www.rfc-editor.org/errata/rfc3260 + https://www.rfc-editor.org/errata/rfc3260/ 10.17487/RFC3260 @@ -100635,7 +100635,7 @@ IETF rai sip - https://www.rfc-editor.org/errata/rfc3261 + https://www.rfc-editor.org/errata/rfc3261/ 10.17487/RFC3261 @@ -100674,7 +100674,7 @@ IETF rai sip - https://www.rfc-editor.org/errata/rfc3262 + https://www.rfc-editor.org/errata/rfc3262/ 10.17487/RFC3262 @@ -100760,7 +100760,7 @@ IETF rai mmusic - https://www.rfc-editor.org/errata/rfc3264 + https://www.rfc-editor.org/errata/rfc3264/ 10.17487/RFC3264 @@ -100807,7 +100807,7 @@ IETF rai sip - https://www.rfc-editor.org/errata/rfc3265 + https://www.rfc-editor.org/errata/rfc3265/ 10.17487/RFC3265 @@ -100847,7 +100847,7 @@ IETF rai mmusic - https://www.rfc-editor.org/errata/rfc3266 + https://www.rfc-editor.org/errata/rfc3266/ 10.17487/RFC3266 @@ -100894,7 +100894,7 @@ IETF rai avt - https://www.rfc-editor.org/errata/rfc3267 + https://www.rfc-editor.org/errata/rfc3267/ 10.17487/RFC3267 @@ -101024,7 +101024,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc3270 + https://www.rfc-editor.org/errata/rfc3270/ 10.17487/RFC3270 @@ -101057,7 +101057,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc3271 + https://www.rfc-editor.org/errata/rfc3271/ 10.17487/RFC3271 @@ -101105,7 +101105,7 @@ IETF subip tewg - https://www.rfc-editor.org/errata/rfc3272 + https://www.rfc-editor.org/errata/rfc3272/ 10.17487/RFC3272 @@ -101206,7 +101206,7 @@ IETF sec xmldsig - https://www.rfc-editor.org/errata/rfc3275 + https://www.rfc-editor.org/errata/rfc3275/ 10.17487/RFC3275 @@ -101268,7 +101268,7 @@ IETF rtg isis - https://www.rfc-editor.org/errata/rfc3277 + https://www.rfc-editor.org/errata/rfc3277/ 10.17487/RFC3277 @@ -101307,7 +101307,7 @@ IETF sec smime - https://www.rfc-editor.org/errata/rfc3278 + https://www.rfc-editor.org/errata/rfc3278/ 10.17487/RFC3278 @@ -101353,7 +101353,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc3279 + https://www.rfc-editor.org/errata/rfc3279/ 10.17487/RFC3279 @@ -101404,7 +101404,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc3280 + https://www.rfc-editor.org/errata/rfc3280/ 10.17487/RFC3280 @@ -101442,7 +101442,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc3281 + https://www.rfc-editor.org/errata/rfc3281/ 10.17487/RFC3281 @@ -101714,7 +101714,7 @@ IETF tsv diffserv - https://www.rfc-editor.org/errata/rfc3289 + https://www.rfc-editor.org/errata/rfc3289/ 10.17487/RFC3289 @@ -102012,7 +102012,7 @@ IETF app fax - https://www.rfc-editor.org/errata/rfc3297 + https://www.rfc-editor.org/errata/rfc3297/ 10.17487/RFC3297 @@ -102104,7 +102104,7 @@ HISTORIC INTERNET STANDARD INDEPENDENT - https://www.rfc-editor.org/errata/rfc3300 + https://www.rfc-editor.org/errata/rfc3300/ 10.17487/RFC3300 @@ -102251,7 +102251,7 @@ IETF tsv midcom - https://www.rfc-editor.org/errata/rfc3304 + https://www.rfc-editor.org/errata/rfc3304/ 10.17487/RFC3304 @@ -102281,7 +102281,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc3305 + https://www.rfc-editor.org/errata/rfc3305/ 10.17487/RFC3305 @@ -102533,7 +102533,7 @@ IETF rai sip - https://www.rfc-editor.org/errata/rfc3312 + https://www.rfc-editor.org/errata/rfc3312/ 10.17487/RFC3312 @@ -102589,7 +102589,7 @@ IETF int ipv6 - https://www.rfc-editor.org/errata/rfc3314 + https://www.rfc-editor.org/errata/rfc3314/ 10.17487/RFC3314 @@ -102650,7 +102650,7 @@ IETF int dhc - https://www.rfc-editor.org/errata/rfc3315 + https://www.rfc-editor.org/errata/rfc3315/ 10.17487/RFC3315 @@ -102955,7 +102955,7 @@ IETF rai sip - https://www.rfc-editor.org/errata/rfc3323 + https://www.rfc-editor.org/errata/rfc3323/ 10.17487/RFC3323 @@ -103021,7 +103021,7 @@ IETF rai sip - https://www.rfc-editor.org/errata/rfc3325 + https://www.rfc-editor.org/errata/rfc3325/ 10.17487/RFC3325 @@ -103102,7 +103102,7 @@ IETF rai sip - https://www.rfc-editor.org/errata/rfc3327 + https://www.rfc-editor.org/errata/rfc3327/ 10.17487/RFC3327 @@ -103150,7 +103150,7 @@ IETF rai sip - https://www.rfc-editor.org/errata/rfc3329 + https://www.rfc-editor.org/errata/rfc3329/ 10.17487/RFC3329 @@ -103179,7 +103179,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc3330 + https://www.rfc-editor.org/errata/rfc3330/ 10.17487/RFC3330 @@ -103223,7 +103223,7 @@ IETF rai sigtran - https://www.rfc-editor.org/errata/rfc3331 + https://www.rfc-editor.org/errata/rfc3331/ 10.17487/RFC3331 @@ -103497,7 +103497,7 @@ IETF app impp - https://www.rfc-editor.org/errata/rfc3339 + https://www.rfc-editor.org/errata/rfc3339/ 10.17487/RFC3339 @@ -103688,7 +103688,7 @@ IETF int mobileip - https://www.rfc-editor.org/errata/rfc3344 + https://www.rfc-editor.org/errata/rfc3344/ 10.17487/RFC3344 @@ -103725,7 +103725,7 @@ IETF rtg idr - https://www.rfc-editor.org/errata/rfc3345 + https://www.rfc-editor.org/errata/rfc3345/ 10.17487/RFC3345 @@ -103833,7 +103833,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc3348 + https://www.rfc-editor.org/errata/rfc3348/ 10.17487/RFC3348 @@ -104185,7 +104185,7 @@ IETF rtg isis - https://www.rfc-editor.org/errata/rfc3359 + https://www.rfc-editor.org/errata/rfc3359/ 10.17487/RFC3359 @@ -104320,7 +104320,7 @@ IETF int dnsext - https://www.rfc-editor.org/errata/rfc3363 + https://www.rfc-editor.org/errata/rfc3363/ 10.17487/RFC3363 @@ -104353,7 +104353,7 @@ IETF int dnsext - https://www.rfc-editor.org/errata/rfc3364 + https://www.rfc-editor.org/errata/rfc3364/ 10.17487/RFC3364 @@ -104510,7 +104510,7 @@ IETF sec smime - https://www.rfc-editor.org/errata/rfc3369 + https://www.rfc-editor.org/errata/rfc3369/ 10.17487/RFC3369 @@ -104551,7 +104551,7 @@ IETF sec smime - https://www.rfc-editor.org/errata/rfc3370 + https://www.rfc-editor.org/errata/rfc3370/ 10.17487/RFC3370 @@ -104620,7 +104620,7 @@ IETF rai sipping - https://www.rfc-editor.org/errata/rfc3372 + https://www.rfc-editor.org/errata/rfc3372/ 10.17487/RFC3372 @@ -104762,7 +104762,7 @@ IETF rtg idmr - https://www.rfc-editor.org/errata/rfc3376 + https://www.rfc-editor.org/errata/rfc3376/ 10.17487/RFC3376 @@ -104806,7 +104806,7 @@ IETF app ldapbis - https://www.rfc-editor.org/errata/rfc3377 + https://www.rfc-editor.org/errata/rfc3377/ 10.17487/RFC3377 @@ -104911,7 +104911,7 @@ IETF app ipp - https://www.rfc-editor.org/errata/rfc3380 + https://www.rfc-editor.org/errata/rfc3380/ 10.17487/RFC3380 @@ -104953,7 +104953,7 @@ IETF app ipp - https://www.rfc-editor.org/errata/rfc3381 + https://www.rfc-editor.org/errata/rfc3381/ 10.17487/RFC3381 @@ -105003,7 +105003,7 @@ IETF app ipp - https://www.rfc-editor.org/errata/rfc3382 + https://www.rfc-editor.org/errata/rfc3382/ 10.17487/RFC3382 @@ -105105,7 +105105,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc3385 + https://www.rfc-editor.org/errata/rfc3385/ 10.17487/RFC3385 @@ -105254,7 +105254,7 @@ IETF rai avt - https://www.rfc-editor.org/errata/rfc3389 + https://www.rfc-editor.org/errata/rfc3389/ 10.17487/RFC3389 @@ -105294,7 +105294,7 @@ IETF wit tsvwg - https://www.rfc-editor.org/errata/rfc3390 + https://www.rfc-editor.org/errata/rfc3390/ 10.17487/RFC3390 @@ -105389,7 +105389,7 @@ IETF ops ippm - https://www.rfc-editor.org/errata/rfc3393 + https://www.rfc-editor.org/errata/rfc3393/ 10.17487/RFC3393 @@ -105419,7 +105419,7 @@ IETF sec smime - https://www.rfc-editor.org/errata/rfc3394 + https://www.rfc-editor.org/errata/rfc3394/ 10.17487/RFC3394 @@ -105573,7 +105573,7 @@ IETF rai sipping - https://www.rfc-editor.org/errata/rfc3398 + https://www.rfc-editor.org/errata/rfc3398/ 10.17487/RFC3398 @@ -105616,7 +105616,7 @@ IETF app urn - https://www.rfc-editor.org/errata/rfc3401 + https://www.rfc-editor.org/errata/rfc3401/ 10.17487/RFC3401 @@ -105652,7 +105652,7 @@ IETF app urn - https://www.rfc-editor.org/errata/rfc3402 + https://www.rfc-editor.org/errata/rfc3402/ 10.17487/RFC3402 @@ -105688,7 +105688,7 @@ IETF app urn - https://www.rfc-editor.org/errata/rfc3403 + https://www.rfc-editor.org/errata/rfc3403/ 10.17487/RFC3403 @@ -105724,7 +105724,7 @@ IETF app urn - https://www.rfc-editor.org/errata/rfc3404 + https://www.rfc-editor.org/errata/rfc3404/ 10.17487/RFC3404 @@ -105758,7 +105758,7 @@ IETF app urn - https://www.rfc-editor.org/errata/rfc3405 + https://www.rfc-editor.org/errata/rfc3405/ 10.17487/RFC3405 @@ -105803,7 +105803,7 @@ IETF app urn - https://www.rfc-editor.org/errata/rfc3406 + https://www.rfc-editor.org/errata/rfc3406/ 10.17487/RFC3406 @@ -105831,7 +105831,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc3407 + https://www.rfc-editor.org/errata/rfc3407/ 10.17487/RFC3407 @@ -105935,7 +105935,7 @@ IETF ops snmpv3 - https://www.rfc-editor.org/errata/rfc3410 + https://www.rfc-editor.org/errata/rfc3410/ 10.17487/RFC3410 @@ -105981,7 +105981,7 @@ IETF ops snmpv3 - https://www.rfc-editor.org/errata/rfc3411 + https://www.rfc-editor.org/errata/rfc3411/ 10.17487/RFC3411 @@ -106032,7 +106032,7 @@ IETF ops snmpv3 - https://www.rfc-editor.org/errata/rfc3412 + https://www.rfc-editor.org/errata/rfc3412/ 10.17487/RFC3412 @@ -106077,7 +106077,7 @@ IETF ops snmpv3 - https://www.rfc-editor.org/errata/rfc3413 + https://www.rfc-editor.org/errata/rfc3413/ 10.17487/RFC3413 @@ -106123,7 +106123,7 @@ IETF ops snmpv3 - https://www.rfc-editor.org/errata/rfc3414 + https://www.rfc-editor.org/errata/rfc3414/ 10.17487/RFC3414 @@ -106167,7 +106167,7 @@ IETF ops snmpv3 - https://www.rfc-editor.org/errata/rfc3415 + https://www.rfc-editor.org/errata/rfc3415/ 10.17487/RFC3415 @@ -106206,7 +106206,7 @@ IETF ops snmpv3 - https://www.rfc-editor.org/errata/rfc3416 + https://www.rfc-editor.org/errata/rfc3416/ 10.17487/RFC3416 @@ -106285,7 +106285,7 @@ IETF ops snmpv3 - https://www.rfc-editor.org/errata/rfc3418 + https://www.rfc-editor.org/errata/rfc3418/ 10.17487/RFC3418 @@ -106343,7 +106343,7 @@ IETF rai sip - https://www.rfc-editor.org/errata/rfc3420 + https://www.rfc-editor.org/errata/rfc3420/ 10.17487/RFC3420 @@ -106485,7 +106485,7 @@ INFORMATIONAL INFORMATIONAL IAB - https://www.rfc-editor.org/errata/rfc3424 + https://www.rfc-editor.org/errata/rfc3424/ 10.17487/RFC3424 @@ -106636,7 +106636,7 @@ IETF rai sip - https://www.rfc-editor.org/errata/rfc3428 + https://www.rfc-editor.org/errata/rfc3428/ 10.17487/RFC3428 @@ -106795,7 +106795,7 @@ IETF ops entmib - https://www.rfc-editor.org/errata/rfc3433 + https://www.rfc-editor.org/errata/rfc3433/ 10.17487/RFC3433 @@ -106872,7 +106872,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc3435 + https://www.rfc-editor.org/errata/rfc3435/ 10.17487/RFC3435 @@ -107011,7 +107011,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc3439 + https://www.rfc-editor.org/errata/rfc3439/ 10.17487/RFC3439 @@ -107223,7 +107223,7 @@ IETF int dnsext - https://www.rfc-editor.org/errata/rfc3445 + https://www.rfc-editor.org/errata/rfc3445/ 10.17487/RFC3445 @@ -107299,7 +107299,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc3447 + https://www.rfc-editor.org/errata/rfc3447/ 10.17487/RFC3447 @@ -107343,7 +107343,7 @@ IETF wit tsvwg - https://www.rfc-editor.org/errata/rfc3448 + https://www.rfc-editor.org/errata/rfc3448/ 10.17487/RFC3448 @@ -107612,7 +107612,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc3454 + https://www.rfc-editor.org/errata/rfc3454/ 10.17487/RFC3454 @@ -107645,7 +107645,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc3455 + https://www.rfc-editor.org/errata/rfc3455/ 10.17487/RFC3455 @@ -107756,7 +107756,7 @@ IETF app vpim - https://www.rfc-editor.org/errata/rfc3458 + https://www.rfc-editor.org/errata/rfc3458/ 10.17487/RFC3458 @@ -107866,7 +107866,7 @@ DRAFT STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc3461 + https://www.rfc-editor.org/errata/rfc3461/ 10.17487/RFC3461 @@ -107943,7 +107943,7 @@ DRAFT STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc3463 + https://www.rfc-editor.org/errata/rfc3463/ 10.17487/RFC3463 @@ -107985,7 +107985,7 @@ DRAFT STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc3464 + https://www.rfc-editor.org/errata/rfc3464/ 10.17487/RFC3464 @@ -108123,7 +108123,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc3468 + https://www.rfc-editor.org/errata/rfc3468/ 10.17487/RFC3468 @@ -108199,7 +108199,7 @@ BEST CURRENT PRACTICE IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc3470 + https://www.rfc-editor.org/errata/rfc3470/ 10.17487/RFC3470 @@ -108243,7 +108243,7 @@ IETF rtg ccamp - https://www.rfc-editor.org/errata/rfc3471 + https://www.rfc-editor.org/errata/rfc3471/ 10.17487/RFC3471 @@ -108337,7 +108337,7 @@ IETF rtg ccamp - https://www.rfc-editor.org/errata/rfc3473 + https://www.rfc-editor.org/errata/rfc3473/ 10.17487/RFC3473 @@ -108368,7 +108368,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc3474 + https://www.rfc-editor.org/errata/rfc3474/ 10.17487/RFC3474 @@ -108948,7 +108948,7 @@ IETF int idn - https://www.rfc-editor.org/errata/rfc3490 + https://www.rfc-editor.org/errata/rfc3490/ 10.17487/RFC3490 @@ -109017,7 +109017,7 @@ IETF int idn - https://www.rfc-editor.org/errata/rfc3492 + https://www.rfc-editor.org/errata/rfc3492/ 10.17487/RFC3492 @@ -109109,7 +109109,7 @@ INFORMATIONAL INFORMATIONAL Legacy - https://www.rfc-editor.org/errata/rfc3494 + https://www.rfc-editor.org/errata/rfc3494/ 10.17487/RFC3494 @@ -109145,7 +109145,7 @@ IETF int dhc - https://www.rfc-editor.org/errata/rfc3495 + https://www.rfc-editor.org/errata/rfc3495/ 10.17487/RFC3495 @@ -109332,7 +109332,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc3501 + https://www.rfc-editor.org/errata/rfc3501/ 10.17487/RFC3501 @@ -109430,7 +109430,7 @@ IETF app trade - https://www.rfc-editor.org/errata/rfc3504 + https://www.rfc-editor.org/errata/rfc3504/ 10.17487/RFC3504 @@ -109522,7 +109522,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc3507 + https://www.rfc-editor.org/errata/rfc3507/ 10.17487/RFC3507 @@ -109766,7 +109766,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc3514 + https://www.rfc-editor.org/errata/rfc3514/ 10.17487/RFC3514 @@ -109801,7 +109801,7 @@ IETF rai sip - https://www.rfc-editor.org/errata/rfc3515 + https://www.rfc-editor.org/errata/rfc3515/ 10.17487/RFC3515 @@ -109831,7 +109831,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc3516 + https://www.rfc-editor.org/errata/rfc3516/ 10.17487/RFC3516 @@ -109959,7 +109959,7 @@ IETF int mobileip - https://www.rfc-editor.org/errata/rfc3519 + https://www.rfc-editor.org/errata/rfc3519/ 10.17487/RFC3519 @@ -110183,7 +110183,7 @@ IETF rai megaco - https://www.rfc-editor.org/errata/rfc3525 + https://www.rfc-editor.org/errata/rfc3525/ 10.17487/RFC3525 @@ -110218,7 +110218,7 @@ IETF sec ipsec - https://www.rfc-editor.org/errata/rfc3526 + https://www.rfc-editor.org/errata/rfc3526/ 10.17487/RFC3526 @@ -110381,7 +110381,7 @@ IETF wit nfsv4 - https://www.rfc-editor.org/errata/rfc3530 + https://www.rfc-editor.org/errata/rfc3530/ 10.17487/RFC3530 @@ -110480,7 +110480,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc3533 + https://www.rfc-editor.org/errata/rfc3533/ 10.17487/RFC3533 @@ -110599,7 +110599,7 @@ IETF int vgmib - https://www.rfc-editor.org/errata/rfc3537 + https://www.rfc-editor.org/errata/rfc3537/ 10.17487/RFC3537 @@ -110771,7 +110771,7 @@ IETF int ipv6 - https://www.rfc-editor.org/errata/rfc3542 + https://www.rfc-editor.org/errata/rfc3542/ 10.17487/RFC3542 @@ -111014,7 +111014,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc3548 + https://www.rfc-editor.org/errata/rfc3548/ 10.17487/RFC3548 @@ -111051,7 +111051,7 @@ IETF rtg forces - https://www.rfc-editor.org/errata/rfc3549 + https://www.rfc-editor.org/errata/rfc3549/ 10.17487/RFC3549 @@ -111115,7 +111115,7 @@ IETF rai avt - https://www.rfc-editor.org/errata/rfc3550 + https://www.rfc-editor.org/errata/rfc3550/ 10.17487/RFC3550 @@ -111202,7 +111202,7 @@ BEST CURRENT PRACTICE BEST CURRENT PRACTICE IAB - https://www.rfc-editor.org/errata/rfc3552 + https://www.rfc-editor.org/errata/rfc3552/ 10.17487/RFC3552 @@ -111517,7 +111517,7 @@ IETF rtg manet - https://www.rfc-editor.org/errata/rfc3561 + https://www.rfc-editor.org/errata/rfc3561/ 10.17487/RFC3561 @@ -111641,7 +111641,7 @@ IETF int vgmib - https://www.rfc-editor.org/errata/rfc3565 + https://www.rfc-editor.org/errata/rfc3565/ 10.17487/RFC3565 @@ -111993,7 +111993,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc3575 + https://www.rfc-editor.org/errata/rfc3575/ 10.17487/RFC3575 @@ -112154,7 +112154,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc3579 + https://www.rfc-editor.org/errata/rfc3579/ 10.17487/RFC3579 @@ -112197,7 +112197,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc3580 + https://www.rfc-editor.org/errata/rfc3580/ 10.17487/RFC3580 @@ -112458,7 +112458,7 @@ IETF int ipv6 - https://www.rfc-editor.org/errata/rfc3587 + https://www.rfc-editor.org/errata/rfc3587/ 10.17487/RFC3587 @@ -112509,7 +112509,7 @@ IETF ops aaa - https://www.rfc-editor.org/errata/rfc3588 + https://www.rfc-editor.org/errata/rfc3588/ 10.17487/RFC3588 @@ -112536,7 +112536,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc3589 + https://www.rfc-editor.org/errata/rfc3589/ 10.17487/RFC3589 @@ -112619,7 +112619,7 @@ IETF int vgmib - https://www.rfc-editor.org/errata/rfc3591 + https://www.rfc-editor.org/errata/rfc3591/ 10.17487/RFC3591 @@ -112657,7 +112657,7 @@ IETF int vgmib - https://www.rfc-editor.org/errata/rfc3592 + https://www.rfc-editor.org/errata/rfc3592/ 10.17487/RFC3592 @@ -112840,7 +112840,7 @@ IETF int dnsext - https://www.rfc-editor.org/errata/rfc3597 + https://www.rfc-editor.org/errata/rfc3597/ 10.17487/RFC3597 @@ -112930,7 +112930,7 @@ HISTORIC INTERNET STANDARD Legacy - https://www.rfc-editor.org/errata/rfc3600 + https://www.rfc-editor.org/errata/rfc3600/ 10.17487/RFC3600 @@ -113109,7 +113109,7 @@ IETF rai mmusic - https://www.rfc-editor.org/errata/rfc3605 + https://www.rfc-editor.org/errata/rfc3605/ 10.17487/RFC3605 @@ -113290,7 +113290,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc3610 + https://www.rfc-editor.org/errata/rfc3610/ 10.17487/RFC3610 @@ -113335,7 +113335,7 @@ IETF rai avt - https://www.rfc-editor.org/errata/rfc3611 + https://www.rfc-editor.org/errata/rfc3611/ 10.17487/RFC3611 @@ -113551,7 +113551,7 @@ IETF rtg msdp - https://www.rfc-editor.org/errata/rfc3618 + https://www.rfc-editor.org/errata/rfc3618/ 10.17487/RFC3618 @@ -113780,7 +113780,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc3625 + https://www.rfc-editor.org/errata/rfc3625/ 10.17487/RFC3625 @@ -113818,7 +113818,7 @@ IETF rtg manet - https://www.rfc-editor.org/errata/rfc3626 + https://www.rfc-editor.org/errata/rfc3626/ 10.17487/RFC3626 @@ -113848,7 +113848,7 @@ HISTORIC INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc3627 + https://www.rfc-editor.org/errata/rfc3627/ 10.17487/RFC3627 @@ -114079,7 +114079,7 @@ IETF int dhc - https://www.rfc-editor.org/errata/rfc3633 + https://www.rfc-editor.org/errata/rfc3633/ 10.17487/RFC3633 @@ -114391,7 +114391,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc3642 + https://www.rfc-editor.org/errata/rfc3642/ 10.17487/RFC3642 @@ -114608,7 +114608,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc3647 + https://www.rfc-editor.org/errata/rfc3647/ 10.17487/RFC3647 @@ -114707,7 +114707,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc3650 + https://www.rfc-editor.org/errata/rfc3650/ 10.17487/RFC3650 @@ -114739,7 +114739,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc3651 + https://www.rfc-editor.org/errata/rfc3651/ 10.17487/RFC3651 @@ -115028,7 +115028,7 @@ IETF app ftpext - https://www.rfc-editor.org/errata/rfc3659 + https://www.rfc-editor.org/errata/rfc3659/ 10.17487/RFC3659 @@ -115244,7 +115244,7 @@ IETF rai sipping - https://www.rfc-editor.org/errata/rfc3665 + https://www.rfc-editor.org/errata/rfc3665/ 10.17487/RFC3665 @@ -115289,7 +115289,7 @@ IETF rai sipping - https://www.rfc-editor.org/errata/rfc3666 + https://www.rfc-editor.org/errata/rfc3666/ 10.17487/RFC3666 @@ -115639,7 +115639,7 @@ BEST CURRENT PRACTICE BEST CURRENT PRACTICE IAB - https://www.rfc-editor.org/errata/rfc3677 + https://www.rfc-editor.org/errata/rfc3677/ 10.17487/RFC3677 @@ -115678,7 +115678,7 @@ IETF int magma - https://www.rfc-editor.org/errata/rfc3678 + https://www.rfc-editor.org/errata/rfc3678/ 10.17487/RFC3678 @@ -115750,7 +115750,7 @@ IETF rai sipping - https://www.rfc-editor.org/errata/rfc3680 + https://www.rfc-editor.org/errata/rfc3680/ 10.17487/RFC3680 @@ -116174,7 +116174,7 @@ IETF rai geopriv - https://www.rfc-editor.org/errata/rfc3693 + https://www.rfc-editor.org/errata/rfc3693/ 10.17487/RFC3693 @@ -116282,7 +116282,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc3696 + https://www.rfc-editor.org/errata/rfc3696/ 10.17487/RFC3696 @@ -116398,7 +116398,7 @@ HISTORIC INTERNET STANDARD INDEPENDENT - https://www.rfc-editor.org/errata/rfc3700 + https://www.rfc-editor.org/errata/rfc3700/ 10.17487/RFC3700 @@ -116613,7 +116613,7 @@ IETF sec ipsec - https://www.rfc-editor.org/errata/rfc3706 + https://www.rfc-editor.org/errata/rfc3706/ 10.17487/RFC3706 @@ -116719,7 +116719,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc3709 + https://www.rfc-editor.org/errata/rfc3709/ 10.17487/RFC3709 @@ -116799,7 +116799,7 @@ IETF rai avt - https://www.rfc-editor.org/errata/rfc3711 + https://www.rfc-editor.org/errata/rfc3711/ 10.17487/RFC3711 @@ -116832,7 +116832,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc3712 + https://www.rfc-editor.org/errata/rfc3712/ 10.17487/RFC3712 @@ -116933,7 +116933,7 @@ IETF sec ipsec - https://www.rfc-editor.org/errata/rfc3715 + https://www.rfc-editor.org/errata/rfc3715/ 10.17487/RFC3715 @@ -116956,7 +116956,7 @@ HISTORIC INFORMATIONAL IAB - https://www.rfc-editor.org/errata/rfc3716 + https://www.rfc-editor.org/errata/rfc3716/ 10.17487/RFC3716 @@ -117099,7 +117099,7 @@ IETF tsv ips - https://www.rfc-editor.org/errata/rfc3720 + https://www.rfc-editor.org/errata/rfc3720/ 10.17487/RFC3720 @@ -117391,7 +117391,7 @@ IETF ops adslmib - https://www.rfc-editor.org/errata/rfc3728 + https://www.rfc-editor.org/errata/rfc3728/ 10.17487/RFC3728 @@ -117451,7 +117451,7 @@ IETF app provreg - https://www.rfc-editor.org/errata/rfc3730 + https://www.rfc-editor.org/errata/rfc3730/ 10.17487/RFC3730 @@ -117545,7 +117545,7 @@ IETF app provreg - https://www.rfc-editor.org/errata/rfc3733 + https://www.rfc-editor.org/errata/rfc3733/ 10.17487/RFC3733 @@ -117636,7 +117636,7 @@ IETF int dhc - https://www.rfc-editor.org/errata/rfc3736 + https://www.rfc-editor.org/errata/rfc3736/ 10.17487/RFC3736 @@ -117746,7 +117746,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc3739 + https://www.rfc-editor.org/errata/rfc3739/ 10.17487/RFC3739 @@ -117811,7 +117811,7 @@ IETF sec xmldsig - https://www.rfc-editor.org/errata/rfc3741 + https://www.rfc-editor.org/errata/rfc3741/ 10.17487/RFC3741 @@ -117841,7 +117841,7 @@ IETF wit tsvwg - https://www.rfc-editor.org/errata/rfc3742 + https://www.rfc-editor.org/errata/rfc3742/ 10.17487/RFC3742 @@ -117873,7 +117873,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc3743 + https://www.rfc-editor.org/errata/rfc3743/ 10.17487/RFC3743 @@ -117912,7 +117912,7 @@ IETF app webdav - https://www.rfc-editor.org/errata/rfc3744 + https://www.rfc-editor.org/errata/rfc3744/ 10.17487/RFC3744 @@ -117984,7 +117984,7 @@ IETF rtg forces - https://www.rfc-editor.org/errata/rfc3746 + https://www.rfc-editor.org/errata/rfc3746/ 10.17487/RFC3746 @@ -118071,7 +118071,7 @@ IETF int eap - https://www.rfc-editor.org/errata/rfc3748 + https://www.rfc-editor.org/errata/rfc3748/ 10.17487/RFC3748 @@ -118355,7 +118355,7 @@ IETF int send - https://www.rfc-editor.org/errata/rfc3756 + https://www.rfc-editor.org/errata/rfc3756/ 10.17487/RFC3756 @@ -118398,7 +118398,7 @@ IETF int dnsext - https://www.rfc-editor.org/errata/rfc3757 + https://www.rfc-editor.org/errata/rfc3757/ 10.17487/RFC3757 @@ -118853,7 +118853,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc3770 + https://www.rfc-editor.org/errata/rfc3770/ 10.17487/RFC3770 @@ -119105,7 +119105,7 @@ IETF gen nomcom - https://www.rfc-editor.org/errata/rfc3777 + https://www.rfc-editor.org/errata/rfc3777/ 10.17487/RFC3777 @@ -119190,7 +119190,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc3779 + https://www.rfc-editor.org/errata/rfc3779/ 10.17487/RFC3779 @@ -119250,7 +119250,7 @@ EXPERIMENTAL EXPERIMENTAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc3781 + https://www.rfc-editor.org/errata/rfc3781/ 10.17487/RFC3781 @@ -119291,7 +119291,7 @@ IETF wit tsvwg - https://www.rfc-editor.org/errata/rfc3782 + https://www.rfc-editor.org/errata/rfc3782/ 10.17487/RFC3782 @@ -119323,7 +119323,7 @@ IETF tsv ips - https://www.rfc-editor.org/errata/rfc3783 + https://www.rfc-editor.org/errata/rfc3783/ 10.17487/RFC3783 @@ -119759,7 +119759,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc3797 + https://www.rfc-editor.org/errata/rfc3797/ 10.17487/RFC3797 @@ -119810,7 +119810,7 @@ DRAFT STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc3798 + https://www.rfc-editor.org/errata/rfc3798/ 10.17487/RFC3798 @@ -120177,7 +120177,7 @@ IETF int magma - https://www.rfc-editor.org/errata/rfc3810 + https://www.rfc-editor.org/errata/rfc3810/ 10.17487/RFC3810 @@ -120217,7 +120217,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc3811 + https://www.rfc-editor.org/errata/rfc3811/ 10.17487/RFC3811 @@ -120286,7 +120286,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc3813 + https://www.rfc-editor.org/errata/rfc3813/ 10.17487/RFC3813 @@ -120363,7 +120363,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc3815 + https://www.rfc-editor.org/errata/rfc3815/ 10.17487/RFC3815 @@ -120400,7 +120400,7 @@ IETF tsv rohc - https://www.rfc-editor.org/errata/rfc3816 + https://www.rfc-editor.org/errata/rfc3816/ 10.17487/RFC3816 @@ -120522,7 +120522,7 @@ IETF tsv pilc - https://www.rfc-editor.org/errata/rfc3819 + https://www.rfc-editor.org/errata/rfc3819/ 10.17487/RFC3819 @@ -120569,7 +120569,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc3820 + https://www.rfc-editor.org/errata/rfc3820/ 10.17487/RFC3820 @@ -120644,7 +120644,7 @@ IETF tsv ips - https://www.rfc-editor.org/errata/rfc3822 + https://www.rfc-editor.org/errata/rfc3822/ 10.17487/RFC3822 @@ -120883,7 +120883,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc3829 + https://www.rfc-editor.org/errata/rfc3829/ 10.17487/RFC3829 @@ -120930,7 +120930,7 @@ IETF sec msec - https://www.rfc-editor.org/errata/rfc3830 + https://www.rfc-editor.org/errata/rfc3830/ 10.17487/RFC3830 @@ -121069,7 +121069,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc3834 + https://www.rfc-editor.org/errata/rfc3834/ 10.17487/RFC3834 @@ -121738,7 +121738,7 @@ IETF sec smime - https://www.rfc-editor.org/errata/rfc3852 + https://www.rfc-editor.org/errata/rfc3852/ 10.17487/RFC3852 @@ -121849,7 +121849,7 @@ IETF int vgmib - https://www.rfc-editor.org/errata/rfc3855 + https://www.rfc-editor.org/errata/rfc3855/ 10.17487/RFC3855 @@ -121880,7 +121880,7 @@ IETF rai simple - https://www.rfc-editor.org/errata/rfc3856 + https://www.rfc-editor.org/errata/rfc3856/ 10.17487/RFC3856 @@ -121963,7 +121963,7 @@ IETF app impp - https://www.rfc-editor.org/errata/rfc3859 + https://www.rfc-editor.org/errata/rfc3859/ 10.17487/RFC3859 @@ -122059,7 +122059,7 @@ IETF app impp - https://www.rfc-editor.org/errata/rfc3862 + https://www.rfc-editor.org/errata/rfc3862/ 10.17487/RFC3862 @@ -122106,7 +122106,7 @@ IETF app impp - https://www.rfc-editor.org/errata/rfc3863 + https://www.rfc-editor.org/errata/rfc3863/ 10.17487/RFC3863 @@ -122212,7 +122212,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc3866 + https://www.rfc-editor.org/errata/rfc3866/ 10.17487/RFC3866 @@ -122516,7 +122516,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc3875 + https://www.rfc-editor.org/errata/rfc3875/ 10.17487/RFC3875 @@ -122583,7 +122583,7 @@ IETF ops disman - https://www.rfc-editor.org/errata/rfc3877 + https://www.rfc-editor.org/errata/rfc3877/ 10.17487/RFC3877 @@ -122868,7 +122868,7 @@ IETF app msgtrk - https://www.rfc-editor.org/errata/rfc3886 + https://www.rfc-editor.org/errata/rfc3886/ 10.17487/RFC3886 @@ -122902,7 +122902,7 @@ IETF app msgtrk - https://www.rfc-editor.org/errata/rfc3887 + https://www.rfc-editor.org/errata/rfc3887/ 10.17487/RFC3887 @@ -122999,7 +122999,7 @@ IETF rai sip - https://www.rfc-editor.org/errata/rfc3891 + https://www.rfc-editor.org/errata/rfc3891/ 10.17487/RFC3891 @@ -123390,7 +123390,7 @@ IETF gen ipr - https://www.rfc-editor.org/errata/rfc3905 + https://www.rfc-editor.org/errata/rfc3905/ 10.17487/RFC3905 @@ -123829,7 +123829,7 @@ IETF app xmpp - https://www.rfc-editor.org/errata/rfc3920 + https://www.rfc-editor.org/errata/rfc3920/ 10.17487/RFC3920 @@ -123927,7 +123927,7 @@ IETF app xmpp - https://www.rfc-editor.org/errata/rfc3923 + https://www.rfc-editor.org/errata/rfc3923/ 10.17487/RFC3923 @@ -124030,7 +124030,7 @@ IETF tsv rmt - https://www.rfc-editor.org/errata/rfc3926 + https://www.rfc-editor.org/errata/rfc3926/ 10.17487/RFC3926 @@ -124067,7 +124067,7 @@ IETF int zeroconf - https://www.rfc-editor.org/errata/rfc3927 + https://www.rfc-editor.org/errata/rfc3927/ 10.17487/RFC3927 @@ -124134,7 +124134,7 @@ EXPERIMENTAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc3929 + https://www.rfc-editor.org/errata/rfc3929/ 10.17487/RFC3929 @@ -124202,7 +124202,7 @@ IETF int l2tpext - https://www.rfc-editor.org/errata/rfc3931 + https://www.rfc-editor.org/errata/rfc3931/ 10.17487/RFC3931 @@ -124270,7 +124270,7 @@ BEST CURRENT PRACTICE IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc3933 + https://www.rfc-editor.org/errata/rfc3933/ 10.17487/RFC3933 @@ -124336,7 +124336,7 @@ BEST CURRENT PRACTICE IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc3935 + https://www.rfc-editor.org/errata/rfc3935/ 10.17487/RFC3935 @@ -124459,7 +124459,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc3939 + https://www.rfc-editor.org/errata/rfc3939/ 10.17487/RFC3939 @@ -124576,7 +124576,7 @@ IETF int dhc - https://www.rfc-editor.org/errata/rfc3942 + https://www.rfc-editor.org/errata/rfc3942/ 10.17487/RFC3942 @@ -124645,7 +124645,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc3944 + https://www.rfc-editor.org/errata/rfc3944/ 10.17487/RFC3944 @@ -124678,7 +124678,7 @@ IETF rtg ccamp - https://www.rfc-editor.org/errata/rfc3945 + https://www.rfc-editor.org/errata/rfc3945/ 10.17487/RFC3945 @@ -124746,7 +124746,7 @@ IETF sec ipsec - https://www.rfc-editor.org/errata/rfc3947 + https://www.rfc-editor.org/errata/rfc3947/ 10.17487/RFC3947 @@ -124788,7 +124788,7 @@ IETF sec ipsec - https://www.rfc-editor.org/errata/rfc3948 + https://www.rfc-editor.org/errata/rfc3948/ 10.17487/RFC3948 @@ -125018,7 +125018,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc3954 + https://www.rfc-editor.org/errata/rfc3954/ 10.17487/RFC3954 @@ -125143,7 +125143,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc3958 + https://www.rfc-editor.org/errata/rfc3958/ 10.17487/RFC3958 @@ -125172,7 +125172,7 @@ IETF rai sipping - https://www.rfc-editor.org/errata/rfc3959 + https://www.rfc-editor.org/errata/rfc3959/ 10.17487/RFC3959 @@ -125227,7 +125227,7 @@ IETF sec krb-wg - https://www.rfc-editor.org/errata/rfc3961 + https://www.rfc-editor.org/errata/rfc3961/ 10.17487/RFC3961 @@ -125322,7 +125322,7 @@ IETF ops v6ops - https://www.rfc-editor.org/errata/rfc3964 + https://www.rfc-editor.org/errata/rfc3964/ 10.17487/RFC3964 @@ -125367,7 +125367,7 @@ IETF app fax - https://www.rfc-editor.org/errata/rfc3965 + https://www.rfc-editor.org/errata/rfc3965/ 10.17487/RFC3965 @@ -125405,7 +125405,7 @@ IETF rai iptel - https://www.rfc-editor.org/errata/rfc3966 + https://www.rfc-editor.org/errata/rfc3966/ 10.17487/RFC3966 @@ -125439,7 +125439,7 @@ BEST CURRENT PRACTICE IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc3967 + https://www.rfc-editor.org/errata/rfc3967/ 10.17487/RFC3967 @@ -125542,7 +125542,7 @@ PROPOSED STANDARD PROPOSED STANDARD Legacy - https://www.rfc-editor.org/errata/rfc3970 + https://www.rfc-editor.org/errata/rfc3970/ 10.17487/RFC3970 @@ -125586,7 +125586,7 @@ IETF int send - https://www.rfc-editor.org/errata/rfc3971 + https://www.rfc-editor.org/errata/rfc3971/ 10.17487/RFC3971 @@ -125657,7 +125657,7 @@ IETF rtg pim - https://www.rfc-editor.org/errata/rfc3973 + https://www.rfc-editor.org/errata/rfc3973/ 10.17487/RFC3973 @@ -125796,7 +125796,7 @@ IETF app nntpext - https://www.rfc-editor.org/errata/rfc3977 + https://www.rfc-editor.org/errata/rfc3977/ 10.17487/RFC3977 @@ -125839,7 +125839,7 @@ IETF gen ipr - https://www.rfc-editor.org/errata/rfc3978 + https://www.rfc-editor.org/errata/rfc3978/ 10.17487/RFC3978 @@ -125952,7 +125952,7 @@ IETF app crisp - https://www.rfc-editor.org/errata/rfc3981 + https://www.rfc-editor.org/errata/rfc3981/ 10.17487/RFC3981 @@ -125980,7 +125980,7 @@ IETF app crisp - https://www.rfc-editor.org/errata/rfc3982 + https://www.rfc-editor.org/errata/rfc3982/ 10.17487/RFC3982 @@ -126139,7 +126139,7 @@ INTERNET STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc3986 + https://www.rfc-editor.org/errata/rfc3986/ 10.17487/RFC3986 @@ -126171,7 +126171,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc3987 + https://www.rfc-editor.org/errata/rfc3987/ 10.17487/RFC3987 @@ -126433,7 +126433,7 @@ IETF app ipp - https://www.rfc-editor.org/errata/rfc3995 + https://www.rfc-editor.org/errata/rfc3995/ 10.17487/RFC3995 @@ -126472,7 +126472,7 @@ IETF app ipp - https://www.rfc-editor.org/errata/rfc3996 + https://www.rfc-editor.org/errata/rfc3996/ 10.17487/RFC3996 @@ -126555,7 +126555,7 @@ IETF app ipp - https://www.rfc-editor.org/errata/rfc3998 + https://www.rfc-editor.org/errata/rfc3998/ 10.17487/RFC3998 @@ -126716,7 +126716,7 @@ IETF ops aaa - https://www.rfc-editor.org/errata/rfc4004 + https://www.rfc-editor.org/errata/rfc4004/ 10.17487/RFC4004 @@ -126762,7 +126762,7 @@ IETF ops aaa - https://www.rfc-editor.org/errata/rfc4005 + https://www.rfc-editor.org/errata/rfc4005/ 10.17487/RFC4005 @@ -126805,7 +126805,7 @@ IETF ops aaa - https://www.rfc-editor.org/errata/rfc4006 + https://www.rfc-editor.org/errata/rfc4006/ 10.17487/RFC4006 @@ -126932,7 +126932,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4009 + https://www.rfc-editor.org/errata/rfc4009/ 10.17487/RFC4009 @@ -126970,7 +126970,7 @@ IETF sec smime - https://www.rfc-editor.org/errata/rfc4010 + https://www.rfc-editor.org/errata/rfc4010/ 10.17487/RFC4010 @@ -127082,7 +127082,7 @@ IETF sec sasl - https://www.rfc-editor.org/errata/rfc4013 + https://www.rfc-editor.org/errata/rfc4013/ 10.17487/RFC4013 @@ -127469,7 +127469,7 @@ IETF sec ipseckey - https://www.rfc-editor.org/errata/rfc4025 + https://www.rfc-editor.org/errata/rfc4025/ 10.17487/RFC4025 @@ -127501,7 +127501,7 @@ IETF int l3vpn - https://www.rfc-editor.org/errata/rfc4026 + https://www.rfc-editor.org/errata/rfc4026/ 10.17487/RFC4026 @@ -127563,7 +127563,7 @@ IETF rai sip - https://www.rfc-editor.org/errata/rfc4028 + https://www.rfc-editor.org/errata/rfc4028/ 10.17487/RFC4028 @@ -127604,7 +127604,7 @@ IETF ops v6ops - https://www.rfc-editor.org/errata/rfc4029 + https://www.rfc-editor.org/errata/rfc4029/ 10.17487/RFC4029 @@ -127769,7 +127769,7 @@ IETF int dnsext - https://www.rfc-editor.org/errata/rfc4033 + https://www.rfc-editor.org/errata/rfc4033/ 10.17487/RFC4033 @@ -127841,7 +127841,7 @@ IETF int dnsext - https://www.rfc-editor.org/errata/rfc4034 + https://www.rfc-editor.org/errata/rfc4034/ 10.17487/RFC4034 @@ -127914,7 +127914,7 @@ IETF int dnsext - https://www.rfc-editor.org/errata/rfc4035 + https://www.rfc-editor.org/errata/rfc4035/ 10.17487/RFC4035 @@ -128011,7 +128011,7 @@ IETF ops v6ops - https://www.rfc-editor.org/errata/rfc4038 + https://www.rfc-editor.org/errata/rfc4038/ 10.17487/RFC4038 @@ -128127,7 +128127,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc4042 + https://www.rfc-editor.org/errata/rfc4042/ 10.17487/RFC4042 @@ -128159,7 +128159,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc4043 + https://www.rfc-editor.org/errata/rfc4043/ 10.17487/RFC4043 @@ -128322,7 +128322,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4048 + https://www.rfc-editor.org/errata/rfc4048/ 10.17487/RFC4048 @@ -128428,7 +128428,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4051 + https://www.rfc-editor.org/errata/rfc4051/ 10.17487/RFC4051 @@ -128463,7 +128463,7 @@ BEST CURRENT PRACTICE BEST CURRENT PRACTICE IAB - https://www.rfc-editor.org/errata/rfc4052 + https://www.rfc-editor.org/errata/rfc4052/ 10.17487/RFC4052 @@ -128585,7 +128585,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc4055 + https://www.rfc-editor.org/errata/rfc4055/ 10.17487/RFC4055 @@ -128614,7 +128614,7 @@ IETF sec smime - https://www.rfc-editor.org/errata/rfc4056 + https://www.rfc-editor.org/errata/rfc4056/ 10.17487/RFC4056 @@ -128643,7 +128643,7 @@ IETF ops v6ops - https://www.rfc-editor.org/errata/rfc4057 + https://www.rfc-editor.org/errata/rfc4057/ 10.17487/RFC4057 @@ -128756,7 +128756,7 @@ IETF rai avt - https://www.rfc-editor.org/errata/rfc4060 + https://www.rfc-editor.org/errata/rfc4060/ 10.17487/RFC4060 @@ -129070,7 +129070,7 @@ IETF ops adslmib - https://www.rfc-editor.org/errata/rfc4069 + https://www.rfc-editor.org/errata/rfc4069/ 10.17487/RFC4069 @@ -129188,7 +129188,7 @@ IETF ops aaa - https://www.rfc-editor.org/errata/rfc4072 + https://www.rfc-editor.org/errata/rfc4072/ 10.17487/RFC4072 @@ -129215,7 +129215,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4073 + https://www.rfc-editor.org/errata/rfc4073/ 10.17487/RFC4073 @@ -129566,7 +129566,7 @@ BEST CURRENT PRACTICE IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4084 + https://www.rfc-editor.org/errata/rfc4084/ 10.17487/RFC4084 @@ -129638,7 +129638,7 @@ BEST CURRENT PRACTICE IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4086 + https://www.rfc-editor.org/errata/rfc4086/ 10.17487/RFC4086 @@ -129782,7 +129782,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc4090 + https://www.rfc-editor.org/errata/rfc4090/ 10.17487/RFC4090 @@ -130118,7 +130118,7 @@ IETF rai avt - https://www.rfc-editor.org/errata/rfc4102 + https://www.rfc-editor.org/errata/rfc4102/ 10.17487/RFC4102 @@ -130159,7 +130159,7 @@ IETF rai avt - https://www.rfc-editor.org/errata/rfc4103 + https://www.rfc-editor.org/errata/rfc4103/ 10.17487/RFC4103 @@ -130274,7 +130274,7 @@ IETF sec ipsec - https://www.rfc-editor.org/errata/rfc4106 + https://www.rfc-editor.org/errata/rfc4106/ 10.17487/RFC4106 @@ -130335,7 +130335,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4108 + https://www.rfc-editor.org/errata/rfc4108/ 10.17487/RFC4108 @@ -130397,7 +130397,7 @@ IETF int l3vpn - https://www.rfc-editor.org/errata/rfc4110 + https://www.rfc-editor.org/errata/rfc4110/ 10.17487/RFC4110 @@ -130426,7 +130426,7 @@ IETF int l3vpn - https://www.rfc-editor.org/errata/rfc4111 + https://www.rfc-editor.org/errata/rfc4111/ 10.17487/RFC4111 @@ -130493,7 +130493,7 @@ IETF int ipv6 - https://www.rfc-editor.org/errata/rfc4113 + https://www.rfc-editor.org/errata/rfc4113/ 10.17487/RFC4113 @@ -130521,7 +130521,7 @@ IETF rai enum - https://www.rfc-editor.org/errata/rfc4114 + https://www.rfc-editor.org/errata/rfc4114/ 10.17487/RFC4114 @@ -130632,7 +130632,7 @@ IETF rai sipping - https://www.rfc-editor.org/errata/rfc4117 + https://www.rfc-editor.org/errata/rfc4117/ 10.17487/RFC4117 @@ -130700,7 +130700,7 @@ IETF rai geopriv - https://www.rfc-editor.org/errata/rfc4119 + https://www.rfc-editor.org/errata/rfc4119/ 10.17487/RFC4119 @@ -130757,7 +130757,7 @@ IETF sec krb-wg - https://www.rfc-editor.org/errata/rfc4120 + https://www.rfc-editor.org/errata/rfc4120/ 10.17487/RFC4120 @@ -130839,7 +130839,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4122 + https://www.rfc-editor.org/errata/rfc4122/ 10.17487/RFC4122 @@ -131100,7 +131100,7 @@ IETF app ediint - https://www.rfc-editor.org/errata/rfc4130 + https://www.rfc-editor.org/errata/rfc4130/ 10.17487/RFC4130 @@ -131218,7 +131218,7 @@ IETF ops entmib - https://www.rfc-editor.org/errata/rfc4133 + https://www.rfc-editor.org/errata/rfc4133/ 10.17487/RFC4133 @@ -131244,7 +131244,7 @@ IETF sec smime - https://www.rfc-editor.org/errata/rfc4134 + https://www.rfc-editor.org/errata/rfc4134/ 10.17487/RFC4134 @@ -131466,7 +131466,7 @@ IETF int mipshop - https://www.rfc-editor.org/errata/rfc4140 + https://www.rfc-editor.org/errata/rfc4140/ 10.17487/RFC4140 @@ -131500,7 +131500,7 @@ IETF app fax - https://www.rfc-editor.org/errata/rfc4141 + https://www.rfc-editor.org/errata/rfc4141/ 10.17487/RFC4141 @@ -131570,7 +131570,7 @@ IETF app fax - https://www.rfc-editor.org/errata/rfc4143 + https://www.rfc-editor.org/errata/rfc4143/ 10.17487/RFC4143 @@ -131683,7 +131683,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4147 + https://www.rfc-editor.org/errata/rfc4147/ 10.17487/RFC4147 @@ -131817,7 +131817,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4151 + https://www.rfc-editor.org/errata/rfc4151/ 10.17487/RFC4151 @@ -131966,7 +131966,7 @@ HISTORIC IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4156 + https://www.rfc-editor.org/errata/rfc4156/ 10.17487/RFC4156 @@ -131993,7 +131993,7 @@ HISTORIC IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4157 + https://www.rfc-editor.org/errata/rfc4157/ 10.17487/RFC4157 @@ -132292,7 +132292,7 @@ IETF rai sigtran - https://www.rfc-editor.org/errata/rfc4165 + https://www.rfc-editor.org/errata/rfc4165/ 10.17487/RFC4165 @@ -132497,7 +132497,7 @@ IETF tsv ips - https://www.rfc-editor.org/errata/rfc4171 + https://www.rfc-editor.org/errata/rfc4171/ 10.17487/RFC4171 @@ -132583,7 +132583,7 @@ IETF tsv ips - https://www.rfc-editor.org/errata/rfc4173 + https://www.rfc-editor.org/errata/rfc4173/ 10.17487/RFC4173 @@ -132664,7 +132664,7 @@ IETF rai avt - https://www.rfc-editor.org/errata/rfc4175 + https://www.rfc-editor.org/errata/rfc4175/ 10.17487/RFC4175 @@ -132830,7 +132830,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4180 + https://www.rfc-editor.org/errata/rfc4180/ 10.17487/RFC4180 @@ -132866,7 +132866,7 @@ BEST CURRENT PRACTICE IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4181 + https://www.rfc-editor.org/errata/rfc4181/ 10.17487/RFC4181 @@ -132902,7 +132902,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc4182 + https://www.rfc-editor.org/errata/rfc4182/ 10.17487/RFC4182 @@ -133026,7 +133026,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4186 + https://www.rfc-editor.org/errata/rfc4186/ 10.17487/RFC4186 @@ -133062,7 +133062,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4187 + https://www.rfc-editor.org/errata/rfc4187/ 10.17487/RFC4187 @@ -133103,7 +133103,7 @@ IETF ops bridge - https://www.rfc-editor.org/errata/rfc4188 + https://www.rfc-editor.org/errata/rfc4188/ 10.17487/RFC4188 @@ -133200,7 +133200,7 @@ IETF int ipv6 - https://www.rfc-editor.org/errata/rfc4191 + https://www.rfc-editor.org/errata/rfc4191/ 10.17487/RFC4191 @@ -133317,7 +133317,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4194 + https://www.rfc-editor.org/errata/rfc4194/ 10.17487/RFC4194 @@ -133420,7 +133420,7 @@ IETF int pwe3 - https://www.rfc-editor.org/errata/rfc4197 + https://www.rfc-editor.org/errata/rfc4197/ 10.17487/RFC4197 @@ -133614,7 +133614,7 @@ IETF rtg ccamp - https://www.rfc-editor.org/errata/rfc4204 + https://www.rfc-editor.org/errata/rfc4204/ 10.17487/RFC4204 @@ -133728,7 +133728,7 @@ IETF rtg ccamp - https://www.rfc-editor.org/errata/rfc4207 + https://www.rfc-editor.org/errata/rfc4207/ 10.17487/RFC4207 @@ -133859,7 +133859,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc4210 + https://www.rfc-editor.org/errata/rfc4210/ 10.17487/RFC4210 @@ -133904,7 +133904,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc4211 + https://www.rfc-editor.org/errata/rfc4211/ 10.17487/RFC4211 @@ -133976,7 +133976,7 @@ IETF ops v6ops - https://www.rfc-editor.org/errata/rfc4213 + https://www.rfc-editor.org/errata/rfc4213/ 10.17487/RFC4213 @@ -134119,7 +134119,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4217 + https://www.rfc-editor.org/errata/rfc4217/ 10.17487/RFC4217 @@ -134435,7 +134435,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4226 + https://www.rfc-editor.org/errata/rfc4226/ 10.17487/RFC4226 @@ -134477,7 +134477,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4227 + https://www.rfc-editor.org/errata/rfc4227/ 10.17487/RFC4227 @@ -134534,7 +134534,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4229 + https://www.rfc-editor.org/errata/rfc4229/ 10.17487/RFC4229 @@ -134565,7 +134565,7 @@ IETF tsv nsis - https://www.rfc-editor.org/errata/rfc4230 + https://www.rfc-editor.org/errata/rfc4230/ 10.17487/RFC4230 @@ -134593,7 +134593,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4231 + https://www.rfc-editor.org/errata/rfc4231/ 10.17487/RFC4231 @@ -134690,7 +134690,7 @@ DRAFT STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4234 + https://www.rfc-editor.org/errata/rfc4234/ 10.17487/RFC4234 @@ -134730,7 +134730,7 @@ IETF rai sipping - https://www.rfc-editor.org/errata/rfc4235 + https://www.rfc-editor.org/errata/rfc4235/ 10.17487/RFC4235 @@ -134792,7 +134792,7 @@ IETF app vpim - https://www.rfc-editor.org/errata/rfc4237 + https://www.rfc-editor.org/errata/rfc4237/ 10.17487/RFC4237 @@ -134826,7 +134826,7 @@ IETF app vpim - https://www.rfc-editor.org/errata/rfc4238 + https://www.rfc-editor.org/errata/rfc4238/ 10.17487/RFC4238 @@ -134895,7 +134895,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4240 + https://www.rfc-editor.org/errata/rfc4240/ 10.17487/RFC4240 @@ -134934,7 +134934,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc4241 + https://www.rfc-editor.org/errata/rfc4241/ 10.17487/RFC4241 @@ -135036,7 +135036,7 @@ IETF rai sip - https://www.rfc-editor.org/errata/rfc4244 + https://www.rfc-editor.org/errata/rfc4244/ 10.17487/RFC4244 @@ -135302,7 +135302,7 @@ IETF sec secsh - https://www.rfc-editor.org/errata/rfc4252 + https://www.rfc-editor.org/errata/rfc4252/ 10.17487/RFC4252 @@ -135348,7 +135348,7 @@ IETF sec secsh - https://www.rfc-editor.org/errata/rfc4253 + https://www.rfc-editor.org/errata/rfc4253/ 10.17487/RFC4253 @@ -135386,7 +135386,7 @@ IETF sec secsh - https://www.rfc-editor.org/errata/rfc4254 + https://www.rfc-editor.org/errata/rfc4254/ 10.17487/RFC4254 @@ -135419,7 +135419,7 @@ IETF sec secsh - https://www.rfc-editor.org/errata/rfc4255 + https://www.rfc-editor.org/errata/rfc4255/ 10.17487/RFC4255 @@ -135451,7 +135451,7 @@ IETF sec secsh - https://www.rfc-editor.org/errata/rfc4256 + https://www.rfc-editor.org/errata/rfc4256/ 10.17487/RFC4256 @@ -135842,7 +135842,7 @@ IETF ops entmib - https://www.rfc-editor.org/errata/rfc4268 + https://www.rfc-editor.org/errata/rfc4268/ 10.17487/RFC4268 @@ -135918,7 +135918,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4270 + https://www.rfc-editor.org/errata/rfc4270/ 10.17487/RFC4270 @@ -135972,7 +135972,7 @@ IETF rtg idr - https://www.rfc-editor.org/errata/rfc4271 + https://www.rfc-editor.org/errata/rfc4271/ 10.17487/RFC4271 @@ -136042,7 +136042,7 @@ IETF rtg idr - https://www.rfc-editor.org/errata/rfc4273 + https://www.rfc-editor.org/errata/rfc4273/ 10.17487/RFC4273 @@ -136073,7 +136073,7 @@ IETF rtg idr - https://www.rfc-editor.org/errata/rfc4274 + https://www.rfc-editor.org/errata/rfc4274/ 10.17487/RFC4274 @@ -136105,7 +136105,7 @@ IETF rtg idr - https://www.rfc-editor.org/errata/rfc4275 + https://www.rfc-editor.org/errata/rfc4275/ 10.17487/RFC4275 @@ -136166,7 +136166,7 @@ IETF rtg idr - https://www.rfc-editor.org/errata/rfc4277 + https://www.rfc-editor.org/errata/rfc4277/ 10.17487/RFC4277 @@ -136272,7 +136272,7 @@ IETF int dhc - https://www.rfc-editor.org/errata/rfc4280 + https://www.rfc-editor.org/errata/rfc4280/ 10.17487/RFC4280 @@ -136313,7 +136313,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4281 + https://www.rfc-editor.org/errata/rfc4281/ 10.17487/RFC4281 @@ -136359,7 +136359,7 @@ IETF sec radext - https://www.rfc-editor.org/errata/rfc4282 + https://www.rfc-editor.org/errata/rfc4282/ 10.17487/RFC4282 @@ -136402,7 +136402,7 @@ IETF int mip6 - https://www.rfc-editor.org/errata/rfc4283 + https://www.rfc-editor.org/errata/rfc4283/ 10.17487/RFC4283 @@ -136482,7 +136482,7 @@ IETF int mip6 - https://www.rfc-editor.org/errata/rfc4285 + https://www.rfc-editor.org/errata/rfc4285/ 10.17487/RFC4285 @@ -136517,7 +136517,7 @@ IETF int magma - https://www.rfc-editor.org/errata/rfc4286 + https://www.rfc-editor.org/errata/rfc4286/ 10.17487/RFC4286 @@ -136591,7 +136591,7 @@ BEST CURRENT PRACTICE IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4288 + https://www.rfc-editor.org/errata/rfc4288/ 10.17487/RFC4288 @@ -136659,7 +136659,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc4290 + https://www.rfc-editor.org/errata/rfc4290/ 10.17487/RFC4290 @@ -136705,7 +136705,7 @@ IETF int ipv6 - https://www.rfc-editor.org/errata/rfc4291 + https://www.rfc-editor.org/errata/rfc4291/ 10.17487/RFC4291 @@ -136783,7 +136783,7 @@ IETF int ipv6 - https://www.rfc-editor.org/errata/rfc4293 + https://www.rfc-editor.org/errata/rfc4293/ 10.17487/RFC4293 @@ -136818,7 +136818,7 @@ IETF int ipv6 - https://www.rfc-editor.org/errata/rfc4294 + https://www.rfc-editor.org/errata/rfc4294/ 10.17487/RFC4294 @@ -136856,7 +136856,7 @@ IETF int mip6 - https://www.rfc-editor.org/errata/rfc4295 + https://www.rfc-editor.org/errata/rfc4295/ 10.17487/RFC4295 @@ -136888,7 +136888,7 @@ IETF tsv rddp - https://www.rfc-editor.org/errata/rfc4296 + https://www.rfc-editor.org/errata/rfc4296/ 10.17487/RFC4296 @@ -137030,7 +137030,7 @@ IETF sec ipsec - https://www.rfc-editor.org/errata/rfc4301 + https://www.rfc-editor.org/errata/rfc4301/ 10.17487/RFC4301 @@ -137081,7 +137081,7 @@ IETF sec ipsec - https://www.rfc-editor.org/errata/rfc4302 + https://www.rfc-editor.org/errata/rfc4302/ 10.17487/RFC4302 @@ -137131,7 +137131,7 @@ IETF sec ipsec - https://www.rfc-editor.org/errata/rfc4303 + https://www.rfc-editor.org/errata/rfc4303/ 10.17487/RFC4303 @@ -137213,7 +137213,7 @@ IETF sec ipsec - https://www.rfc-editor.org/errata/rfc4305 + https://www.rfc-editor.org/errata/rfc4305/ 10.17487/RFC4305 @@ -137265,7 +137265,7 @@ IETF sec ipsec - https://www.rfc-editor.org/errata/rfc4306 + https://www.rfc-editor.org/errata/rfc4306/ 10.17487/RFC4306 @@ -137298,7 +137298,7 @@ IETF sec ipsec - https://www.rfc-editor.org/errata/rfc4307 + https://www.rfc-editor.org/errata/rfc4307/ 10.17487/RFC4307 @@ -137330,7 +137330,7 @@ IETF sec ipsec - https://www.rfc-editor.org/errata/rfc4308 + https://www.rfc-editor.org/errata/rfc4308/ 10.17487/RFC4308 @@ -137363,7 +137363,7 @@ IETF sec ipsec - https://www.rfc-editor.org/errata/rfc4309 + https://www.rfc-editor.org/errata/rfc4309/ 10.17487/RFC4309 @@ -137465,7 +137465,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4312 + https://www.rfc-editor.org/errata/rfc4312/ 10.17487/RFC4312 @@ -137533,7 +137533,7 @@ IETF app imapext - https://www.rfc-editor.org/errata/rfc4314 + https://www.rfc-editor.org/errata/rfc4314/ 10.17487/RFC4314 @@ -137691,7 +137691,7 @@ IETF ops adslmib - https://www.rfc-editor.org/errata/rfc4319 + https://www.rfc-editor.org/errata/rfc4319/ 10.17487/RFC4319 @@ -137777,7 +137777,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4322 + https://www.rfc-editor.org/errata/rfc4322/ 10.17487/RFC4322 @@ -137921,7 +137921,7 @@ IETF int ipdvb - https://www.rfc-editor.org/errata/rfc4326 + https://www.rfc-editor.org/errata/rfc4326/ 10.17487/RFC4326 @@ -137961,7 +137961,7 @@ IETF rtg ccamp - https://www.rfc-editor.org/errata/rfc4327 + https://www.rfc-editor.org/errata/rfc4327/ 10.17487/RFC4327 @@ -138067,7 +138067,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc4330 + https://www.rfc-editor.org/errata/rfc4330/ 10.17487/RFC4330 @@ -138211,7 +138211,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc4334 + https://www.rfc-editor.org/errata/rfc4334/ 10.17487/RFC4334 @@ -138239,7 +138239,7 @@ IETF sec secsh - https://www.rfc-editor.org/errata/rfc4335 + https://www.rfc-editor.org/errata/rfc4335/ 10.17487/RFC4335 @@ -138299,7 +138299,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4337 + https://www.rfc-editor.org/errata/rfc4337/ 10.17487/RFC4337 @@ -138374,7 +138374,7 @@ IETF ops dnsop - https://www.rfc-editor.org/errata/rfc4339 + https://www.rfc-editor.org/errata/rfc4339/ 10.17487/RFC4339 @@ -138414,7 +138414,7 @@ IETF tsv dccp - https://www.rfc-editor.org/errata/rfc4340 + https://www.rfc-editor.org/errata/rfc4340/ 10.17487/RFC4340 @@ -138491,7 +138491,7 @@ IETF tsv dccp - https://www.rfc-editor.org/errata/rfc4342 + https://www.rfc-editor.org/errata/rfc4342/ 10.17487/RFC4342 @@ -138524,7 +138524,7 @@ IETF int dnsext - https://www.rfc-editor.org/errata/rfc4343 + https://www.rfc-editor.org/errata/rfc4343/ 10.17487/RFC4343 @@ -138585,7 +138585,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4345 + https://www.rfc-editor.org/errata/rfc4345/ 10.17487/RFC4345 @@ -138629,7 +138629,7 @@ IETF sec tls - https://www.rfc-editor.org/errata/rfc4346 + https://www.rfc-editor.org/errata/rfc4346/ 10.17487/RFC4346 @@ -138666,7 +138666,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4347 + https://www.rfc-editor.org/errata/rfc4347/ 10.17487/RFC4347 @@ -138828,7 +138828,7 @@ IETF rai avt - https://www.rfc-editor.org/errata/rfc4352 + https://www.rfc-editor.org/errata/rfc4352/ 10.17487/RFC4352 @@ -138999,7 +138999,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4357 + https://www.rfc-editor.org/errata/rfc4357/ 10.17487/RFC4357 @@ -139091,7 +139091,7 @@ IETF rtg idr - https://www.rfc-editor.org/errata/rfc4360 + https://www.rfc-editor.org/errata/rfc4360/ 10.17487/RFC4360 @@ -139130,7 +139130,7 @@ IETF int dhc - https://www.rfc-editor.org/errata/rfc4361 + https://www.rfc-editor.org/errata/rfc4361/ 10.17487/RFC4361 @@ -139211,7 +139211,7 @@ IETF ops bridge - https://www.rfc-editor.org/errata/rfc4363 + https://www.rfc-editor.org/errata/rfc4363/ 10.17487/RFC4363 @@ -139263,7 +139263,7 @@ IETF int l3vpn - https://www.rfc-editor.org/errata/rfc4364 + https://www.rfc-editor.org/errata/rfc4364/ 10.17487/RFC4364 @@ -139288,7 +139288,7 @@ IETF int l3vpn - https://www.rfc-editor.org/errata/rfc4365 + https://www.rfc-editor.org/errata/rfc4365/ 10.17487/RFC4365 @@ -139345,7 +139345,7 @@ IETF sec tls - https://www.rfc-editor.org/errata/rfc4366 + https://www.rfc-editor.org/errata/rfc4366/ 10.17487/RFC4366 @@ -139375,7 +139375,7 @@ INFORMATIONAL INFORMATIONAL IAB - https://www.rfc-editor.org/errata/rfc4367 + https://www.rfc-editor.org/errata/rfc4367/ 10.17487/RFC4367 @@ -139408,7 +139408,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc4368 + https://www.rfc-editor.org/errata/rfc4368/ 10.17487/RFC4368 @@ -139712,7 +139712,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc4377 + https://www.rfc-editor.org/errata/rfc4377/ 10.17487/RFC4377 @@ -139792,7 +139792,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc4379 + https://www.rfc-editor.org/errata/rfc4379/ 10.17487/RFC4379 @@ -139821,7 +139821,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4380 + https://www.rfc-editor.org/errata/rfc4380/ 10.17487/RFC4380 @@ -139887,7 +139887,7 @@ IETF int l3vpn - https://www.rfc-editor.org/errata/rfc4382 + https://www.rfc-editor.org/errata/rfc4382/ 10.17487/RFC4382 @@ -139949,7 +139949,7 @@ IETF ops grow - https://www.rfc-editor.org/errata/rfc4384 + https://www.rfc-editor.org/errata/rfc4384/ 10.17487/RFC4384 @@ -139991,7 +139991,7 @@ IETF int pwe3 - https://www.rfc-editor.org/errata/rfc4385 + https://www.rfc-editor.org/errata/rfc4385/ 10.17487/RFC4385 @@ -140093,7 +140093,7 @@ IETF int dhc - https://www.rfc-editor.org/errata/rfc4388 + https://www.rfc-editor.org/errata/rfc4388/ 10.17487/RFC4388 @@ -140127,7 +140127,7 @@ IETF int ipv6 - https://www.rfc-editor.org/errata/rfc4389 + https://www.rfc-editor.org/errata/rfc4389/ 10.17487/RFC4389 @@ -140336,7 +140336,7 @@ BEST CURRENT PRACTICE IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4395 + https://www.rfc-editor.org/errata/rfc4395/ 10.17487/RFC4395 @@ -140387,7 +140387,7 @@ IETF rai avt - https://www.rfc-editor.org/errata/rfc4396 + https://www.rfc-editor.org/errata/rfc4396/ 10.17487/RFC4396 @@ -140415,7 +140415,7 @@ IETF rtg ccamp - https://www.rfc-editor.org/errata/rfc4397 + https://www.rfc-editor.org/errata/rfc4397/ 10.17487/RFC4397 @@ -140451,7 +140451,7 @@ IETF int dnsext - https://www.rfc-editor.org/errata/rfc4398 + https://www.rfc-editor.org/errata/rfc4398/ 10.17487/RFC4398 @@ -140514,7 +140514,7 @@ IETF sec kitten - https://www.rfc-editor.org/errata/rfc4402 + https://www.rfc-editor.org/errata/rfc4402/ 10.17487/RFC4402 @@ -140547,7 +140547,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4403 + https://www.rfc-editor.org/errata/rfc4403/ 10.17487/RFC4403 @@ -140580,7 +140580,7 @@ IETF tsv ips - https://www.rfc-editor.org/errata/rfc4404 + https://www.rfc-editor.org/errata/rfc4404/ 10.17487/RFC4404 @@ -140670,7 +140670,7 @@ EXPERIMENTAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4407 + https://www.rfc-editor.org/errata/rfc4407/ 10.17487/RFC4407 @@ -140707,7 +140707,7 @@ EXPERIMENTAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4408 + https://www.rfc-editor.org/errata/rfc4408/ 10.17487/RFC4408 @@ -140746,7 +140746,7 @@ DRAFT STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4409 + https://www.rfc-editor.org/errata/rfc4409/ 10.17487/RFC4409 @@ -140782,7 +140782,7 @@ EXPERIMENTAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4410 + https://www.rfc-editor.org/errata/rfc4410/ 10.17487/RFC4410 @@ -140894,7 +140894,7 @@ IETF tsv rohc - https://www.rfc-editor.org/errata/rfc4413 + https://www.rfc-editor.org/errata/rfc4413/ 10.17487/RFC4413 @@ -141059,7 +141059,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4418 + https://www.rfc-editor.org/errata/rfc4418/ 10.17487/RFC4418 @@ -141093,7 +141093,7 @@ IETF sec secsh - https://www.rfc-editor.org/errata/rfc4419 + https://www.rfc-editor.org/errata/rfc4419/ 10.17487/RFC4419 @@ -141236,7 +141236,7 @@ IETF int hip - https://www.rfc-editor.org/errata/rfc4423 + https://www.rfc-editor.org/errata/rfc4423/ 10.17487/RFC4423 @@ -141298,7 +141298,7 @@ IETF rai avt - https://www.rfc-editor.org/errata/rfc4425 + https://www.rfc-editor.org/errata/rfc4425/ 10.17487/RFC4425 @@ -141361,7 +141361,7 @@ IETF rtg ccamp - https://www.rfc-editor.org/errata/rfc4427 + https://www.rfc-editor.org/errata/rfc4427/ 10.17487/RFC4427 @@ -141391,7 +141391,7 @@ IETF rtg ccamp - https://www.rfc-editor.org/errata/rfc4428 + https://www.rfc-editor.org/errata/rfc4428/ 10.17487/RFC4428 @@ -141424,7 +141424,7 @@ IETF int ipv6 - https://www.rfc-editor.org/errata/rfc4429 + https://www.rfc-editor.org/errata/rfc4429/ 10.17487/RFC4429 @@ -141462,7 +141462,7 @@ IETF sec kink - https://www.rfc-editor.org/errata/rfc4430 + https://www.rfc-editor.org/errata/rfc4430/ 10.17487/RFC4430 @@ -141557,7 +141557,7 @@ IETF int mip4 - https://www.rfc-editor.org/errata/rfc4433 + https://www.rfc-editor.org/errata/rfc4433/ 10.17487/RFC4433 @@ -141665,7 +141665,7 @@ IETF int dhc - https://www.rfc-editor.org/errata/rfc4436 + https://www.rfc-editor.org/errata/rfc4436/ 10.17487/RFC4436 @@ -141741,7 +141741,7 @@ IETF ops imss - https://www.rfc-editor.org/errata/rfc4438 + https://www.rfc-editor.org/errata/rfc4438/ 10.17487/RFC4438 @@ -141780,7 +141780,7 @@ IETF ops imss - https://www.rfc-editor.org/errata/rfc4439 + https://www.rfc-editor.org/errata/rfc4439/ 10.17487/RFC4439 @@ -141927,7 +141927,7 @@ IETF int ipv6 - https://www.rfc-editor.org/errata/rfc4443 + https://www.rfc-editor.org/errata/rfc4443/ 10.17487/RFC4443 @@ -141958,7 +141958,7 @@ IETF rtg isis - https://www.rfc-editor.org/errata/rfc4444 + https://www.rfc-editor.org/errata/rfc4444/ 10.17487/RFC4444 @@ -142011,7 +142011,7 @@ IETF int pwe3 - https://www.rfc-editor.org/errata/rfc4446 + https://www.rfc-editor.org/errata/rfc4446/ 10.17487/RFC4446 @@ -142063,7 +142063,7 @@ IETF int pwe3 - https://www.rfc-editor.org/errata/rfc4447 + https://www.rfc-editor.org/errata/rfc4447/ 10.17487/RFC4447 @@ -142108,7 +142108,7 @@ IETF int pwe3 - https://www.rfc-editor.org/errata/rfc4448 + https://www.rfc-editor.org/errata/rfc4448/ 10.17487/RFC4448 @@ -142139,7 +142139,7 @@ IETF int mip6 - https://www.rfc-editor.org/errata/rfc4449 + https://www.rfc-editor.org/errata/rfc4449/ 10.17487/RFC4449 @@ -142167,7 +142167,7 @@ IETF gen newtrk - https://www.rfc-editor.org/errata/rfc4450 + https://www.rfc-editor.org/errata/rfc4450/ 10.17487/RFC4450 @@ -142233,7 +142233,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4452 + https://www.rfc-editor.org/errata/rfc4452/ 10.17487/RFC4452 @@ -142345,7 +142345,7 @@ IETF tsv ips - https://www.rfc-editor.org/errata/rfc4455 + https://www.rfc-editor.org/errata/rfc4455/ 10.17487/RFC4455 @@ -142391,7 +142391,7 @@ IETF rtg idr - https://www.rfc-editor.org/errata/rfc4456 + https://www.rfc-editor.org/errata/rfc4456/ 10.17487/RFC4456 @@ -142460,7 +142460,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4458 + https://www.rfc-editor.org/errata/rfc4458/ 10.17487/RFC4458 @@ -142597,7 +142597,7 @@ IETF sec secsh - https://www.rfc-editor.org/errata/rfc4462 + https://www.rfc-editor.org/errata/rfc4462/ 10.17487/RFC4462 @@ -142790,7 +142790,7 @@ IETF app lemonade - https://www.rfc-editor.org/errata/rfc4468 + https://www.rfc-editor.org/errata/rfc4468/ 10.17487/RFC4468 @@ -142825,7 +142825,7 @@ IETF app lemonade - https://www.rfc-editor.org/errata/rfc4469 + https://www.rfc-editor.org/errata/rfc4469/ 10.17487/RFC4469 @@ -142861,7 +142861,7 @@ IETF int dnsext - https://www.rfc-editor.org/errata/rfc4470 + https://www.rfc-editor.org/errata/rfc4470/ 10.17487/RFC4470 @@ -143003,7 +143003,7 @@ IETF rai sip - https://www.rfc-editor.org/errata/rfc4474 + https://www.rfc-editor.org/errata/rfc4474/ 10.17487/RFC4474 @@ -143160,7 +143160,7 @@ IETF rai simple - https://www.rfc-editor.org/errata/rfc4479 + https://www.rfc-editor.org/errata/rfc4479/ 10.17487/RFC4479 @@ -143194,7 +143194,7 @@ IETF rai simple - https://www.rfc-editor.org/errata/rfc4480 + https://www.rfc-editor.org/errata/rfc4480/ 10.17487/RFC4480 @@ -143276,7 +143276,7 @@ IETF rai sip - https://www.rfc-editor.org/errata/rfc4483 + https://www.rfc-editor.org/errata/rfc4483/ 10.17487/RFC4483 @@ -143540,7 +143540,7 @@ IETF sec smime - https://www.rfc-editor.org/errata/rfc4490 + https://www.rfc-editor.org/errata/rfc4490/ 10.17487/RFC4490 @@ -143592,7 +143592,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc4491 + https://www.rfc-editor.org/errata/rfc4491/ 10.17487/RFC4491 @@ -143643,7 +143643,7 @@ IETF sec tls - https://www.rfc-editor.org/errata/rfc4492 + https://www.rfc-editor.org/errata/rfc4492/ 10.17487/RFC4492 @@ -143883,7 +143883,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4501 + https://www.rfc-editor.org/errata/rfc4501/ 10.17487/RFC4501 @@ -143919,7 +143919,7 @@ IETF ops rmonmib - https://www.rfc-editor.org/errata/rfc4502 + https://www.rfc-editor.org/errata/rfc4502/ 10.17487/RFC4502 @@ -143953,7 +143953,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc4503 + https://www.rfc-editor.org/errata/rfc4503/ 10.17487/RFC4503 @@ -144061,7 +144061,7 @@ IETF wit nfsv4 - https://www.rfc-editor.org/errata/rfc4506 + https://www.rfc-editor.org/errata/rfc4506/ 10.17487/RFC4506 @@ -144159,7 +144159,7 @@ IETF int dnsext - https://www.rfc-editor.org/errata/rfc4509 + https://www.rfc-editor.org/errata/rfc4509/ 10.17487/RFC4509 @@ -144212,7 +144212,7 @@ IETF app ldapbis - https://www.rfc-editor.org/errata/rfc4510 + https://www.rfc-editor.org/errata/rfc4510/ 10.17487/RFC4510 @@ -144250,7 +144250,7 @@ IETF app ldapbis - https://www.rfc-editor.org/errata/rfc4511 + https://www.rfc-editor.org/errata/rfc4511/ 10.17487/RFC4511 @@ -144291,7 +144291,7 @@ IETF app ldapbis - https://www.rfc-editor.org/errata/rfc4512 + https://www.rfc-editor.org/errata/rfc4512/ 10.17487/RFC4512 @@ -144329,7 +144329,7 @@ IETF app ldapbis - https://www.rfc-editor.org/errata/rfc4513 + https://www.rfc-editor.org/errata/rfc4513/ 10.17487/RFC4513 @@ -144366,7 +144366,7 @@ IETF app ldapbis - https://www.rfc-editor.org/errata/rfc4514 + https://www.rfc-editor.org/errata/rfc4514/ 10.17487/RFC4514 @@ -144406,7 +144406,7 @@ IETF app ldapbis - https://www.rfc-editor.org/errata/rfc4515 + https://www.rfc-editor.org/errata/rfc4515/ 10.17487/RFC4515 @@ -144446,7 +144446,7 @@ IETF app ldapbis - https://www.rfc-editor.org/errata/rfc4516 + https://www.rfc-editor.org/errata/rfc4516/ 10.17487/RFC4516 @@ -144485,7 +144485,7 @@ IETF app ldapbis - https://www.rfc-editor.org/errata/rfc4517 + https://www.rfc-editor.org/errata/rfc4517/ 10.17487/RFC4517 @@ -144510,7 +144510,7 @@ IETF app ldapbis - https://www.rfc-editor.org/errata/rfc4518 + https://www.rfc-editor.org/errata/rfc4518/ 10.17487/RFC4518 @@ -144548,7 +144548,7 @@ IETF app ldapbis - https://www.rfc-editor.org/errata/rfc4519 + https://www.rfc-editor.org/errata/rfc4519/ 10.17487/RFC4519 @@ -144579,7 +144579,7 @@ IETF app ldapbis - https://www.rfc-editor.org/errata/rfc4520 + https://www.rfc-editor.org/errata/rfc4520/ 10.17487/RFC4520 @@ -144606,7 +144606,7 @@ BEST CURRENT PRACTICE IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4521 + https://www.rfc-editor.org/errata/rfc4521/ 10.17487/RFC4521 @@ -144669,7 +144669,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4523 + https://www.rfc-editor.org/errata/rfc4523/ 10.17487/RFC4523 @@ -144704,7 +144704,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4524 + https://www.rfc-editor.org/errata/rfc4524/ 10.17487/RFC4524 @@ -144760,7 +144760,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4526 + https://www.rfc-editor.org/errata/rfc4526/ 10.17487/RFC4526 @@ -144784,7 +144784,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4527 + https://www.rfc-editor.org/errata/rfc4527/ 10.17487/RFC4527 @@ -144812,7 +144812,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4528 + https://www.rfc-editor.org/errata/rfc4528/ 10.17487/RFC4528 @@ -144836,7 +144836,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4529 + https://www.rfc-editor.org/errata/rfc4529/ 10.17487/RFC4529 @@ -144920,7 +144920,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4532 + https://www.rfc-editor.org/errata/rfc4532/ 10.17487/RFC4532 @@ -144980,7 +144980,7 @@ IETF sec msec - https://www.rfc-editor.org/errata/rfc4534 + https://www.rfc-editor.org/errata/rfc4534/ 10.17487/RFC4534 @@ -145195,7 +145195,7 @@ IETF int magma - https://www.rfc-editor.org/errata/rfc4541 + https://www.rfc-editor.org/errata/rfc4541/ 10.17487/RFC4541 @@ -145270,7 +145270,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4543 + https://www.rfc-editor.org/errata/rfc4543/ 10.17487/RFC4543 @@ -145311,7 +145311,7 @@ IETF tsv ips - https://www.rfc-editor.org/errata/rfc4544 + https://www.rfc-editor.org/errata/rfc4544/ 10.17487/RFC4544 @@ -145346,7 +145346,7 @@ IETF tsv ips - https://www.rfc-editor.org/errata/rfc4545 + https://www.rfc-editor.org/errata/rfc4545/ 10.17487/RFC4545 @@ -145524,7 +145524,7 @@ IETF app lemonade - https://www.rfc-editor.org/errata/rfc4550 + https://www.rfc-editor.org/errata/rfc4550/ 10.17487/RFC4550 @@ -145561,7 +145561,7 @@ IETF app imapext - https://www.rfc-editor.org/errata/rfc4551 + https://www.rfc-editor.org/errata/rfc4551/ 10.17487/RFC4551 @@ -145595,7 +145595,7 @@ IETF rtg ospf - https://www.rfc-editor.org/errata/rfc4552 + https://www.rfc-editor.org/errata/rfc4552/ 10.17487/RFC4552 @@ -145631,7 +145631,7 @@ IETF int pwe3 - https://www.rfc-editor.org/errata/rfc4553 + https://www.rfc-editor.org/errata/rfc4553/ 10.17487/RFC4553 @@ -145724,7 +145724,7 @@ IETF sec krb-wg - https://www.rfc-editor.org/errata/rfc4556 + https://www.rfc-editor.org/errata/rfc4556/ 10.17487/RFC4556 @@ -145757,7 +145757,7 @@ IETF sec krb-wg - https://www.rfc-editor.org/errata/rfc4557 + https://www.rfc-editor.org/errata/rfc4557/ 10.17487/RFC4557 @@ -145838,7 +145838,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc4559 + https://www.rfc-editor.org/errata/rfc4559/ 10.17487/RFC4559 @@ -145922,7 +145922,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc4561 + https://www.rfc-editor.org/errata/rfc4561/ 10.17487/RFC4561 @@ -146114,7 +146114,7 @@ IETF rai mmusic - https://www.rfc-editor.org/errata/rfc4566 + https://www.rfc-editor.org/errata/rfc4566/ 10.17487/RFC4566 @@ -146156,7 +146156,7 @@ IETF rai mmusic - https://www.rfc-editor.org/errata/rfc4567 + https://www.rfc-editor.org/errata/rfc4567/ 10.17487/RFC4567 @@ -146191,7 +146191,7 @@ IETF rai mmusic - https://www.rfc-editor.org/errata/rfc4568 + https://www.rfc-editor.org/errata/rfc4568/ 10.17487/RFC4568 @@ -146250,7 +146250,7 @@ IETF rai mmusic - https://www.rfc-editor.org/errata/rfc4570 + https://www.rfc-editor.org/errata/rfc4570/ 10.17487/RFC4570 @@ -146280,7 +146280,7 @@ IETF rai avt - https://www.rfc-editor.org/errata/rfc4571 + https://www.rfc-editor.org/errata/rfc4571/ 10.17487/RFC4571 @@ -146453,7 +146453,7 @@ IETF rtg ospf - https://www.rfc-editor.org/errata/rfc4576 + https://www.rfc-editor.org/errata/rfc4576/ 10.17487/RFC4576 @@ -146493,7 +146493,7 @@ IETF int l3vpn - https://www.rfc-editor.org/errata/rfc4577 + https://www.rfc-editor.org/errata/rfc4577/ 10.17487/RFC4577 @@ -146526,7 +146526,7 @@ IETF int dhc - https://www.rfc-editor.org/errata/rfc4578 + https://www.rfc-editor.org/errata/rfc4578/ 10.17487/RFC4578 @@ -146690,7 +146690,7 @@ IETF rai mmusic - https://www.rfc-editor.org/errata/rfc4583 + https://www.rfc-editor.org/errata/rfc4583/ 10.17487/RFC4583 @@ -146725,7 +146725,7 @@ IETF int mip6 - https://www.rfc-editor.org/errata/rfc4584 + https://www.rfc-editor.org/errata/rfc4584/ 10.17487/RFC4584 @@ -146771,7 +146771,7 @@ IETF rai avt - https://www.rfc-editor.org/errata/rfc4585 + https://www.rfc-editor.org/errata/rfc4585/ 10.17487/RFC4585 @@ -146814,7 +146814,7 @@ IETF rai avt - https://www.rfc-editor.org/errata/rfc4586 + https://www.rfc-editor.org/errata/rfc4586/ 10.17487/RFC4586 @@ -146848,7 +146848,7 @@ IETF rai avt - https://www.rfc-editor.org/errata/rfc4587 + https://www.rfc-editor.org/errata/rfc4587/ 10.17487/RFC4587 @@ -146891,7 +146891,7 @@ IETF rai avt - https://www.rfc-editor.org/errata/rfc4588 + https://www.rfc-editor.org/errata/rfc4588/ 10.17487/RFC4588 @@ -146965,7 +146965,7 @@ IETF sec radext - https://www.rfc-editor.org/errata/rfc4590 + https://www.rfc-editor.org/errata/rfc4590/ 10.17487/RFC4590 @@ -147011,7 +147011,7 @@ IETF int l2tpext - https://www.rfc-editor.org/errata/rfc4591 + https://www.rfc-editor.org/errata/rfc4591/ 10.17487/RFC4591 @@ -147043,7 +147043,7 @@ IETF int dnsext - https://www.rfc-editor.org/errata/rfc4592 + https://www.rfc-editor.org/errata/rfc4592/ 10.17487/RFC4592 @@ -147123,7 +147123,7 @@ IETF wit tsvwg - https://www.rfc-editor.org/errata/rfc4594 + https://www.rfc-editor.org/errata/rfc4594/ 10.17487/RFC4594 @@ -147153,7 +147153,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4595 + https://www.rfc-editor.org/errata/rfc4595/ 10.17487/RFC4595 @@ -147181,7 +147181,7 @@ IETF rai sipping - https://www.rfc-editor.org/errata/rfc4596 + https://www.rfc-editor.org/errata/rfc4596/ 10.17487/RFC4596 @@ -147304,7 +147304,7 @@ IETF rtg pim - https://www.rfc-editor.org/errata/rfc4601 + https://www.rfc-editor.org/errata/rfc4601/ 10.17487/RFC4601 @@ -147433,7 +147433,7 @@ IETF int magma - https://www.rfc-editor.org/errata/rfc4605 + https://www.rfc-editor.org/errata/rfc4605/ 10.17487/RFC4605 @@ -147469,7 +147469,7 @@ IETF rtg ccamp - https://www.rfc-editor.org/errata/rfc4606 + https://www.rfc-editor.org/errata/rfc4606/ 10.17487/RFC4606 @@ -147502,7 +147502,7 @@ IETF rtg ssm - https://www.rfc-editor.org/errata/rfc4607 + https://www.rfc-editor.org/errata/rfc4607/ 10.17487/RFC4607 @@ -147683,7 +147683,7 @@ HISTORIC IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4612 + https://www.rfc-editor.org/errata/rfc4612/ 10.17487/RFC4612 @@ -147826,7 +147826,7 @@ IETF sec sasl - https://www.rfc-editor.org/errata/rfc4616 + https://www.rfc-editor.org/errata/rfc4616/ 10.17487/RFC4616 @@ -147939,7 +147939,7 @@ IETF int pwe3 - https://www.rfc-editor.org/errata/rfc4619 + https://www.rfc-editor.org/errata/rfc4619/ 10.17487/RFC4619 @@ -148065,7 +148065,7 @@ IETF int pwe3 - https://www.rfc-editor.org/errata/rfc4623 + https://www.rfc-editor.org/errata/rfc4623/ 10.17487/RFC4623 @@ -148201,7 +148201,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4627 + https://www.rfc-editor.org/errata/rfc4627/ 10.17487/RFC4627 @@ -148361,7 +148361,7 @@ IETF rtg ccamp - https://www.rfc-editor.org/errata/rfc4631 + https://www.rfc-editor.org/errata/rfc4631/ 10.17487/RFC4631 @@ -148399,7 +148399,7 @@ IETF ops grow - https://www.rfc-editor.org/errata/rfc4632 + https://www.rfc-editor.org/errata/rfc4632/ 10.17487/RFC4632 @@ -148466,7 +148466,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4634 + https://www.rfc-editor.org/errata/rfc4634/ 10.17487/RFC4634 @@ -148504,7 +148504,7 @@ IETF int dnsext - https://www.rfc-editor.org/errata/rfc4635 + https://www.rfc-editor.org/errata/rfc4635/ 10.17487/RFC4635 @@ -148535,7 +148535,7 @@ IETF int mip4 - https://www.rfc-editor.org/errata/rfc4636 + https://www.rfc-editor.org/errata/rfc4636/ 10.17487/RFC4636 @@ -148645,7 +148645,7 @@ IETF int mip6 - https://www.rfc-editor.org/errata/rfc4640 + https://www.rfc-editor.org/errata/rfc4640/ 10.17487/RFC4640 @@ -148689,7 +148689,7 @@ IETF ops dnsop - https://www.rfc-editor.org/errata/rfc4641 + https://www.rfc-editor.org/errata/rfc4641/ 10.17487/RFC4641 @@ -148728,7 +148728,7 @@ IETF app nntpext - https://www.rfc-editor.org/errata/rfc4642 + https://www.rfc-editor.org/errata/rfc4642/ 10.17487/RFC4642 @@ -148766,7 +148766,7 @@ IETF app nntpext - https://www.rfc-editor.org/errata/rfc4643 + https://www.rfc-editor.org/errata/rfc4643/ 10.17487/RFC4643 @@ -148802,7 +148802,7 @@ IETF app nntpext - https://www.rfc-editor.org/errata/rfc4644 + https://www.rfc-editor.org/errata/rfc4644/ 10.17487/RFC4644 @@ -148830,7 +148830,7 @@ IETF app ltru - https://www.rfc-editor.org/errata/rfc4645 + https://www.rfc-editor.org/errata/rfc4645/ 10.17487/RFC4645 @@ -148867,7 +148867,7 @@ IETF app ltru - https://www.rfc-editor.org/errata/rfc4646 + https://www.rfc-editor.org/errata/rfc4646/ 10.17487/RFC4646 @@ -148940,7 +148940,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4648 + https://www.rfc-editor.org/errata/rfc4648/ 10.17487/RFC4648 @@ -148999,7 +148999,7 @@ IETF sec msec - https://www.rfc-editor.org/errata/rfc4650 + https://www.rfc-editor.org/errata/rfc4650/ 10.17487/RFC4650 @@ -149132,7 +149132,7 @@ IETF wit tcpm - https://www.rfc-editor.org/errata/rfc4653 + https://www.rfc-editor.org/errata/rfc4653/ 10.17487/RFC4653 @@ -149166,7 +149166,7 @@ IETF tsv rmt - https://www.rfc-editor.org/errata/rfc4654 + https://www.rfc-editor.org/errata/rfc4654/ 10.17487/RFC4654 @@ -149322,7 +149322,7 @@ IETF int l3vpn - https://www.rfc-editor.org/errata/rfc4659 + https://www.rfc-editor.org/errata/rfc4659/ 10.17487/RFC4659 @@ -149364,7 +149364,7 @@ IETF rai simple - https://www.rfc-editor.org/errata/rfc4660 + https://www.rfc-editor.org/errata/rfc4660/ 10.17487/RFC4660 @@ -149403,7 +149403,7 @@ IETF rai simple - https://www.rfc-editor.org/errata/rfc4661 + https://www.rfc-editor.org/errata/rfc4661/ 10.17487/RFC4661 @@ -149436,7 +149436,7 @@ IETF rai sip - https://www.rfc-editor.org/errata/rfc4662 + https://www.rfc-editor.org/errata/rfc4662/ 10.17487/RFC4662 @@ -149492,7 +149492,7 @@ IETF int l2vpn - https://www.rfc-editor.org/errata/rfc4664 + https://www.rfc-editor.org/errata/rfc4664/ 10.17487/RFC4664 @@ -149573,7 +149573,7 @@ IETF rai sigtran - https://www.rfc-editor.org/errata/rfc4666 + https://www.rfc-editor.org/errata/rfc4666/ 10.17487/RFC4666 @@ -149638,7 +149638,7 @@ IETF sec radext - https://www.rfc-editor.org/errata/rfc4668 + https://www.rfc-editor.org/errata/rfc4668/ 10.17487/RFC4668 @@ -149672,7 +149672,7 @@ IETF sec radext - https://www.rfc-editor.org/errata/rfc4669 + https://www.rfc-editor.org/errata/rfc4669/ 10.17487/RFC4669 @@ -149706,7 +149706,7 @@ IETF sec radext - https://www.rfc-editor.org/errata/rfc4670 + https://www.rfc-editor.org/errata/rfc4670/ 10.17487/RFC4670 @@ -149740,7 +149740,7 @@ IETF sec radext - https://www.rfc-editor.org/errata/rfc4671 + https://www.rfc-editor.org/errata/rfc4671/ 10.17487/RFC4671 @@ -149778,7 +149778,7 @@ IETF sec radext - https://www.rfc-editor.org/errata/rfc4672 + https://www.rfc-editor.org/errata/rfc4672/ 10.17487/RFC4672 @@ -149814,7 +149814,7 @@ IETF sec radext - https://www.rfc-editor.org/errata/rfc4673 + https://www.rfc-editor.org/errata/rfc4673/ 10.17487/RFC4673 @@ -149878,7 +149878,7 @@ IETF sec radext - https://www.rfc-editor.org/errata/rfc4675 + https://www.rfc-editor.org/errata/rfc4675/ 10.17487/RFC4675 @@ -149910,7 +149910,7 @@ IETF rai geopriv - https://www.rfc-editor.org/errata/rfc4676 + https://www.rfc-editor.org/errata/rfc4676/ 10.17487/RFC4676 @@ -149946,7 +149946,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4677 + https://www.rfc-editor.org/errata/rfc4677/ 10.17487/RFC4677 @@ -149973,7 +149973,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc4678 + https://www.rfc-editor.org/errata/rfc4678/ 10.17487/RFC4678 @@ -150011,7 +150011,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc4679 + https://www.rfc-editor.org/errata/rfc4679/ 10.17487/RFC4679 @@ -150163,7 +150163,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc4683 + https://www.rfc-editor.org/errata/rfc4683/ 10.17487/RFC4683 @@ -150214,7 +150214,7 @@ IETF int l3vpn - https://www.rfc-editor.org/errata/rfc4684 + https://www.rfc-editor.org/errata/rfc4684/ 10.17487/RFC4684 @@ -150410,7 +150410,7 @@ INFORMATIONAL INFORMATIONAL IAB - https://www.rfc-editor.org/errata/rfc4690 + https://www.rfc-editor.org/errata/rfc4690/ 10.17487/RFC4690 @@ -150588,7 +150588,7 @@ IETF rai avt - https://www.rfc-editor.org/errata/rfc4695 + https://www.rfc-editor.org/errata/rfc4695/ 10.17487/RFC4695 @@ -150637,7 +150637,7 @@ IETF rai avt - https://www.rfc-editor.org/errata/rfc4696 + https://www.rfc-editor.org/errata/rfc4696/ 10.17487/RFC4696 @@ -150711,7 +150711,7 @@ IETF app crisp - https://www.rfc-editor.org/errata/rfc4698 + https://www.rfc-editor.org/errata/rfc4698/ 10.17487/RFC4698 @@ -150755,7 +150755,7 @@ IETF int dnsext - https://www.rfc-editor.org/errata/rfc4701 + https://www.rfc-editor.org/errata/rfc4701/ 10.17487/RFC4701 @@ -150880,7 +150880,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4705 + https://www.rfc-editor.org/errata/rfc4705/ 10.17487/RFC4705 @@ -150957,7 +150957,7 @@ EXPERIMENTAL EXPERIMENTAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc4707 + https://www.rfc-editor.org/errata/rfc4707/ 10.17487/RFC4707 @@ -151318,7 +151318,7 @@ IETF int pwe3 - https://www.rfc-editor.org/errata/rfc4717 + https://www.rfc-editor.org/errata/rfc4717/ 10.17487/RFC4717 @@ -151351,7 +151351,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4718 + https://www.rfc-editor.org/errata/rfc4718/ 10.17487/RFC4718 @@ -151392,7 +151392,7 @@ IETF int l2tpext - https://www.rfc-editor.org/errata/rfc4719 + https://www.rfc-editor.org/errata/rfc4719/ 10.17487/RFC4719 @@ -151465,7 +151465,7 @@ IETF int mip4 - https://www.rfc-editor.org/errata/rfc4721 + https://www.rfc-editor.org/errata/rfc4721/ 10.17487/RFC4721 @@ -151584,7 +151584,7 @@ IETF rtg idr - https://www.rfc-editor.org/errata/rfc4724 + https://www.rfc-editor.org/errata/rfc4724/ 10.17487/RFC4724 @@ -151715,7 +151715,7 @@ IETF rtg manet - https://www.rfc-editor.org/errata/rfc4728 + https://www.rfc-editor.org/errata/rfc4728/ 10.17487/RFC4728 @@ -151775,7 +151775,7 @@ IETF rai sipping - https://www.rfc-editor.org/errata/rfc4730 + https://www.rfc-editor.org/errata/rfc4730/ 10.17487/RFC4730 @@ -151887,7 +151887,7 @@ IETF rai avt - https://www.rfc-editor.org/errata/rfc4733 + https://www.rfc-editor.org/errata/rfc4733/ 10.17487/RFC4733 @@ -152146,7 +152146,7 @@ IETF ops aaa - https://www.rfc-editor.org/errata/rfc4740 + https://www.rfc-editor.org/errata/rfc4740/ 10.17487/RFC4740 @@ -152183,7 +152183,7 @@ IETF ops netconf - https://www.rfc-editor.org/errata/rfc4741 + https://www.rfc-editor.org/errata/rfc4741/ 10.17487/RFC4741 @@ -152217,7 +152217,7 @@ IETF ops netconf - https://www.rfc-editor.org/errata/rfc4742 + https://www.rfc-editor.org/errata/rfc4742/ 10.17487/RFC4742 @@ -152253,7 +152253,7 @@ IETF ops netconf - https://www.rfc-editor.org/errata/rfc4743 + https://www.rfc-editor.org/errata/rfc4743/ 10.17487/RFC4743 @@ -152334,7 +152334,7 @@ IETF rai geopriv - https://www.rfc-editor.org/errata/rfc4745 + https://www.rfc-editor.org/errata/rfc4745/ 10.17487/RFC4745 @@ -152366,7 +152366,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4746 + https://www.rfc-editor.org/errata/rfc4746/ 10.17487/RFC4746 @@ -152403,7 +152403,7 @@ IETF ops imss - https://www.rfc-editor.org/errata/rfc4747 + https://www.rfc-editor.org/errata/rfc4747/ 10.17487/RFC4747 @@ -152518,7 +152518,7 @@ IETF rtg ospf - https://www.rfc-editor.org/errata/rfc4750 + https://www.rfc-editor.org/errata/rfc4750/ 10.17487/RFC4750 @@ -152556,7 +152556,7 @@ IETF sec sasl - https://www.rfc-editor.org/errata/rfc4752 + https://www.rfc-editor.org/errata/rfc4752/ 10.17487/RFC4752 @@ -152592,7 +152592,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4753 + https://www.rfc-editor.org/errata/rfc4753/ 10.17487/RFC4753 @@ -152622,7 +152622,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4754 + https://www.rfc-editor.org/errata/rfc4754/ 10.17487/RFC4754 @@ -152716,7 +152716,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4757 + https://www.rfc-editor.org/errata/rfc4757/ 10.17487/RFC4757 @@ -152745,7 +152745,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4758 + https://www.rfc-editor.org/errata/rfc4758/ 10.17487/RFC4758 @@ -152825,7 +152825,7 @@ IETF rtg idr - https://www.rfc-editor.org/errata/rfc4760 + https://www.rfc-editor.org/errata/rfc4760/ 10.17487/RFC4760 @@ -152899,7 +152899,7 @@ IETF int l2vpn - https://www.rfc-editor.org/errata/rfc4762 + https://www.rfc-editor.org/errata/rfc4762/ 10.17487/RFC4762 @@ -152929,7 +152929,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc4763 + https://www.rfc-editor.org/errata/rfc4763/ 10.17487/RFC4763 @@ -153165,7 +153165,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4770 + https://www.rfc-editor.org/errata/rfc4770/ 10.17487/RFC4770 @@ -153198,7 +153198,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4771 + https://www.rfc-editor.org/errata/rfc4771/ 10.17487/RFC4771 @@ -153416,7 +153416,7 @@ IETF ops opsec - https://www.rfc-editor.org/errata/rfc4778 + https://www.rfc-editor.org/errata/rfc4778/ 10.17487/RFC4778 @@ -153462,7 +153462,7 @@ IETF ops v6ops - https://www.rfc-editor.org/errata/rfc4779 + https://www.rfc-editor.org/errata/rfc4779/ 10.17487/RFC4779 @@ -153572,7 +153572,7 @@ IETF wit tsvwg - https://www.rfc-editor.org/errata/rfc4782 + https://www.rfc-editor.org/errata/rfc4782/ 10.17487/RFC4782 @@ -153605,7 +153605,7 @@ IETF rtg ccamp - https://www.rfc-editor.org/errata/rfc4783 + https://www.rfc-editor.org/errata/rfc4783/ 10.17487/RFC4783 @@ -153851,7 +153851,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4790 + https://www.rfc-editor.org/errata/rfc4790/ 10.17487/RFC4790 @@ -153903,7 +153903,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4791 + https://www.rfc-editor.org/errata/rfc4791/ 10.17487/RFC4791 @@ -154016,7 +154016,7 @@ IETF int dnsext - https://www.rfc-editor.org/errata/rfc4795 + https://www.rfc-editor.org/errata/rfc4795/ 10.17487/RFC4795 @@ -154225,7 +154225,7 @@ IETF rtg ccamp - https://www.rfc-editor.org/errata/rfc4803 + https://www.rfc-editor.org/errata/rfc4803/ 10.17487/RFC4803 @@ -154256,7 +154256,7 @@ IETF wit tsvwg - https://www.rfc-editor.org/errata/rfc4804 + https://www.rfc-editor.org/errata/rfc4804/ 10.17487/RFC4804 @@ -154357,7 +154357,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4807 + https://www.rfc-editor.org/errata/rfc4807/ 10.17487/RFC4807 @@ -154522,7 +154522,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4812 + https://www.rfc-editor.org/errata/rfc4812/ 10.17487/RFC4812 @@ -154823,7 +154823,7 @@ IETF wit tsvwg - https://www.rfc-editor.org/errata/rfc4820 + https://www.rfc-editor.org/errata/rfc4820/ 10.17487/RFC4820 @@ -154858,7 +154858,7 @@ IETF tsv pmtud - https://www.rfc-editor.org/errata/rfc4821 + https://www.rfc-editor.org/errata/rfc4821/ 10.17487/RFC4821 @@ -154931,7 +154931,7 @@ IETF app ediint - https://www.rfc-editor.org/errata/rfc4823 + https://www.rfc-editor.org/errata/rfc4823/ 10.17487/RFC4823 @@ -154967,7 +154967,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc4824 + https://www.rfc-editor.org/errata/rfc4824/ 10.17487/RFC4824 @@ -155036,7 +155036,7 @@ IETF rai simple - https://www.rfc-editor.org/errata/rfc4826 + https://www.rfc-editor.org/errata/rfc4826/ 10.17487/RFC4826 @@ -155074,7 +155074,7 @@ IETF rai simple - https://www.rfc-editor.org/errata/rfc4827 + https://www.rfc-editor.org/errata/rfc4827/ 10.17487/RFC4827 @@ -155105,7 +155105,7 @@ IETF tsv dccp - https://www.rfc-editor.org/errata/rfc4828 + https://www.rfc-editor.org/errata/rfc4828/ 10.17487/RFC4828 @@ -155372,7 +155372,7 @@ IETF ops hubmib - https://www.rfc-editor.org/errata/rfc4836 + https://www.rfc-editor.org/errata/rfc4836/ 10.17487/RFC4836 @@ -155597,7 +155597,7 @@ IETF int pwe3 - https://www.rfc-editor.org/errata/rfc4842 + https://www.rfc-editor.org/errata/rfc4842/ 10.17487/RFC4842 @@ -155778,7 +155778,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4848 + https://www.rfc-editor.org/errata/rfc4848/ 10.17487/RFC4848 @@ -155887,7 +155887,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4851 + https://www.rfc-editor.org/errata/rfc4851/ 10.17487/RFC4851 @@ -155928,7 +155928,7 @@ IETF ops v6ops - https://www.rfc-editor.org/errata/rfc4852 + https://www.rfc-editor.org/errata/rfc4852/ 10.17487/RFC4852 @@ -155963,7 +155963,7 @@ IETF sec smime - https://www.rfc-editor.org/errata/rfc4853 + https://www.rfc-editor.org/errata/rfc4853/ 10.17487/RFC4853 @@ -156061,7 +156061,7 @@ IETF rai avt - https://www.rfc-editor.org/errata/rfc4856 + https://www.rfc-editor.org/errata/rfc4856/ 10.17487/RFC4856 @@ -156096,7 +156096,7 @@ IETF int mip4 - https://www.rfc-editor.org/errata/rfc4857 + https://www.rfc-editor.org/errata/rfc4857/ 10.17487/RFC4857 @@ -156253,7 +156253,7 @@ IETF int ipv6 - https://www.rfc-editor.org/errata/rfc4861 + https://www.rfc-editor.org/errata/rfc4861/ 10.17487/RFC4861 @@ -156298,7 +156298,7 @@ IETF int ipv6 - https://www.rfc-editor.org/errata/rfc4862 + https://www.rfc-editor.org/errata/rfc4862/ 10.17487/RFC4862 @@ -156406,7 +156406,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4865 + https://www.rfc-editor.org/errata/rfc4865/ 10.17487/RFC4865 @@ -156444,7 +156444,7 @@ IETF int mipshop - https://www.rfc-editor.org/errata/rfc4866 + https://www.rfc-editor.org/errata/rfc4866/ 10.17487/RFC4866 @@ -156485,7 +156485,7 @@ IETF rai avt - https://www.rfc-editor.org/errata/rfc4867 + https://www.rfc-editor.org/errata/rfc4867/ 10.17487/RFC4867 @@ -156517,7 +156517,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4868 + https://www.rfc-editor.org/errata/rfc4868/ 10.17487/RFC4868 @@ -156635,7 +156635,7 @@ IETF sec dkim - https://www.rfc-editor.org/errata/rfc4871 + https://www.rfc-editor.org/errata/rfc4871/ 10.17487/RFC4871 @@ -156681,7 +156681,7 @@ IETF rtg ccamp - https://www.rfc-editor.org/errata/rfc4872 + https://www.rfc-editor.org/errata/rfc4872/ 10.17487/RFC4872 @@ -156729,7 +156729,7 @@ IETF rtg ccamp - https://www.rfc-editor.org/errata/rfc4873 + https://www.rfc-editor.org/errata/rfc4873/ 10.17487/RFC4873 @@ -156772,7 +156772,7 @@ IETF rtg ccamp - https://www.rfc-editor.org/errata/rfc4874 + https://www.rfc-editor.org/errata/rfc4874/ 10.17487/RFC4874 @@ -156814,7 +156814,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc4875 + https://www.rfc-editor.org/errata/rfc4875/ 10.17487/RFC4875 @@ -156856,7 +156856,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc4876 + https://www.rfc-editor.org/errata/rfc4876/ 10.17487/RFC4876 @@ -156894,7 +156894,7 @@ IETF int mip6 - https://www.rfc-editor.org/errata/rfc4877 + https://www.rfc-editor.org/errata/rfc4877/ 10.17487/RFC4877 @@ -157009,7 +157009,7 @@ IETF sec openpgp - https://www.rfc-editor.org/errata/rfc4880 + https://www.rfc-editor.org/errata/rfc4880/ 10.17487/RFC4880 @@ -157148,7 +157148,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4884 + https://www.rfc-editor.org/errata/rfc4884/ 10.17487/RFC4884 @@ -157179,7 +157179,7 @@ IETF int nemo - https://www.rfc-editor.org/errata/rfc4885 + https://www.rfc-editor.org/errata/rfc4885/ 10.17487/RFC4885 @@ -157207,7 +157207,7 @@ IETF int nemo - https://www.rfc-editor.org/errata/rfc4886 + https://www.rfc-editor.org/errata/rfc4886/ 10.17487/RFC4886 @@ -157278,7 +157278,7 @@ IETF int nemo - https://www.rfc-editor.org/errata/rfc4888 + https://www.rfc-editor.org/errata/rfc4888/ 10.17487/RFC4888 @@ -157318,7 +157318,7 @@ IETF int nemo - https://www.rfc-editor.org/errata/rfc4889 + https://www.rfc-editor.org/errata/rfc4889/ 10.17487/RFC4889 @@ -157354,7 +157354,7 @@ IETF ops v6ops - https://www.rfc-editor.org/errata/rfc4890 + https://www.rfc-editor.org/errata/rfc4890/ 10.17487/RFC4890 @@ -157526,7 +157526,7 @@ IETF wit tsvwg - https://www.rfc-editor.org/errata/rfc4895 + https://www.rfc-editor.org/errata/rfc4895/ 10.17487/RFC4895 @@ -157603,7 +157603,7 @@ BEST CURRENT PRACTICE IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4897 + https://www.rfc-editor.org/errata/rfc4897/ 10.17487/RFC4897 @@ -157799,7 +157799,7 @@ HISTORIC IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4905 + https://www.rfc-editor.org/errata/rfc4905/ 10.17487/RFC4905 @@ -157839,7 +157839,7 @@ HISTORIC IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4906 + https://www.rfc-editor.org/errata/rfc4906/ 10.17487/RFC4906 @@ -157863,7 +157863,7 @@ INFORMATIONAL INFORMATIONAL IAB - https://www.rfc-editor.org/errata/rfc4907 + https://www.rfc-editor.org/errata/rfc4907/ 10.17487/RFC4907 @@ -157946,7 +157946,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4909 + https://www.rfc-editor.org/errata/rfc4909/ 10.17487/RFC4909 @@ -158243,7 +158243,7 @@ IETF app webdav - https://www.rfc-editor.org/errata/rfc4918 + https://www.rfc-editor.org/errata/rfc4918/ 10.17487/RFC4918 @@ -158277,7 +158277,7 @@ IETF int 6lowpan - https://www.rfc-editor.org/errata/rfc4919 + https://www.rfc-editor.org/errata/rfc4919/ 10.17487/RFC4919 @@ -158323,7 +158323,7 @@ IETF rtg ccamp - https://www.rfc-editor.org/errata/rfc4920 + https://www.rfc-editor.org/errata/rfc4920/ 10.17487/RFC4920 @@ -158526,7 +158526,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc4928 + https://www.rfc-editor.org/errata/rfc4928/ 10.17487/RFC4928 @@ -158764,7 +158764,7 @@ IETF ops imss - https://www.rfc-editor.org/errata/rfc4935 + https://www.rfc-editor.org/errata/rfc4935/ 10.17487/RFC4935 @@ -158857,7 +158857,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc4938 + https://www.rfc-editor.org/errata/rfc4938/ 10.17487/RFC4938 @@ -158897,7 +158897,7 @@ IETF tsv ips - https://www.rfc-editor.org/errata/rfc4939 + https://www.rfc-editor.org/errata/rfc4939/ 10.17487/RFC4939 @@ -158931,7 +158931,7 @@ IETF rtg ospf - https://www.rfc-editor.org/errata/rfc4940 + https://www.rfc-editor.org/errata/rfc4940/ 10.17487/RFC4940 @@ -158974,7 +158974,7 @@ IETF int ipv6 - https://www.rfc-editor.org/errata/rfc4941 + https://www.rfc-editor.org/errata/rfc4941/ 10.17487/RFC4941 @@ -159088,7 +159088,7 @@ IETF int 6lowpan - https://www.rfc-editor.org/errata/rfc4944 + https://www.rfc-editor.org/errata/rfc4944/ 10.17487/RFC4944 @@ -159212,7 +159212,7 @@ INFORMATIONAL INFORMATIONAL IAB - https://www.rfc-editor.org/errata/rfc4948 + https://www.rfc-editor.org/errata/rfc4948/ 10.17487/RFC4948 @@ -159353,7 +159353,7 @@ IETF app eai - https://www.rfc-editor.org/errata/rfc4952 + https://www.rfc-editor.org/errata/rfc4952/ 10.17487/RFC4952 @@ -159424,7 +159424,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4954 + https://www.rfc-editor.org/errata/rfc4954/ 10.17487/RFC4954 @@ -159485,7 +159485,7 @@ IETF int dnsext - https://www.rfc-editor.org/errata/rfc4956 + https://www.rfc-editor.org/errata/rfc4956/ 10.17487/RFC4956 @@ -159524,7 +159524,7 @@ IETF int dna - https://www.rfc-editor.org/errata/rfc4957 + https://www.rfc-editor.org/errata/rfc4957/ 10.17487/RFC4957 @@ -159554,7 +159554,7 @@ IETF rai ieprep - https://www.rfc-editor.org/errata/rfc4958 + https://www.rfc-editor.org/errata/rfc4958/ 10.17487/RFC4958 @@ -159585,7 +159585,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4959 + https://www.rfc-editor.org/errata/rfc4959/ 10.17487/RFC4959 @@ -159632,7 +159632,7 @@ IETF wit tsvwg - https://www.rfc-editor.org/errata/rfc4960 + https://www.rfc-editor.org/errata/rfc4960/ 10.17487/RFC4960 @@ -159830,7 +159830,7 @@ IETF ops v6ops - https://www.rfc-editor.org/errata/rfc4966 + https://www.rfc-editor.org/errata/rfc4966/ 10.17487/RFC4966 @@ -159857,7 +159857,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4967 + https://www.rfc-editor.org/errata/rfc4967/ 10.17487/RFC4967 @@ -159886,7 +159886,7 @@ IETF int 16ng - https://www.rfc-editor.org/errata/rfc4968 + https://www.rfc-editor.org/errata/rfc4968/ 10.17487/RFC4968 @@ -160162,7 +160162,7 @@ IETF rai simple - https://www.rfc-editor.org/errata/rfc4975 + https://www.rfc-editor.org/errata/rfc4975/ 10.17487/RFC4975 @@ -160204,7 +160204,7 @@ IETF rai simple - https://www.rfc-editor.org/errata/rfc4976 + https://www.rfc-editor.org/errata/rfc4976/ 10.17487/RFC4976 @@ -160265,7 +160265,7 @@ IETF app lemonade - https://www.rfc-editor.org/errata/rfc4978 + https://www.rfc-editor.org/errata/rfc4978/ 10.17487/RFC4978 @@ -160409,7 +160409,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc4982 + https://www.rfc-editor.org/errata/rfc4982/ 10.17487/RFC4982 @@ -160483,7 +160483,7 @@ INFORMATIONAL INFORMATIONAL IAB - https://www.rfc-editor.org/errata/rfc4984 + https://www.rfc-editor.org/errata/rfc4984/ 10.17487/RFC4984 @@ -160511,7 +160511,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc4985 + https://www.rfc-editor.org/errata/rfc4985/ 10.17487/RFC4985 @@ -160578,7 +160578,7 @@ IETF wit tcpm - https://www.rfc-editor.org/errata/rfc4987 + https://www.rfc-editor.org/errata/rfc4987/ 10.17487/RFC4987 @@ -160682,7 +160682,7 @@ IETF app crisp - https://www.rfc-editor.org/errata/rfc4991 + https://www.rfc-editor.org/errata/rfc4991/ 10.17487/RFC4991 @@ -160718,7 +160718,7 @@ IETF app crisp - https://www.rfc-editor.org/errata/rfc4992 + https://www.rfc-editor.org/errata/rfc4992/ 10.17487/RFC4992 @@ -160746,7 +160746,7 @@ IETF app crisp - https://www.rfc-editor.org/errata/rfc4993 + https://www.rfc-editor.org/errata/rfc4993/ 10.17487/RFC4993 @@ -160819,7 +160819,7 @@ IETF tsv rohc - https://www.rfc-editor.org/errata/rfc4995 + https://www.rfc-editor.org/errata/rfc4995/ 10.17487/RFC4995 @@ -160858,7 +160858,7 @@ IETF tsv rohc - https://www.rfc-editor.org/errata/rfc4996 + https://www.rfc-editor.org/errata/rfc4996/ 10.17487/RFC4996 @@ -160926,7 +160926,7 @@ IETF sec ltans - https://www.rfc-editor.org/errata/rfc4998 + https://www.rfc-editor.org/errata/rfc4998/ 10.17487/RFC4998 @@ -161021,7 +161021,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5002 + https://www.rfc-editor.org/errata/rfc5002/ 10.17487/RFC5002 @@ -161059,7 +161059,7 @@ IETF int pwe3 - https://www.rfc-editor.org/errata/rfc5003 + https://www.rfc-editor.org/errata/rfc5003/ 10.17487/RFC5003 @@ -161117,7 +161117,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5005 + https://www.rfc-editor.org/errata/rfc5005/ 10.17487/RFC5005 @@ -161195,7 +161195,7 @@ IETF int dhc - https://www.rfc-editor.org/errata/rfc5007 + https://www.rfc-editor.org/errata/rfc5007/ 10.17487/RFC5007 @@ -161228,7 +161228,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5008 + https://www.rfc-editor.org/errata/rfc5008/ 10.17487/RFC5008 @@ -161363,7 +161363,7 @@ IETF rai ecrit - https://www.rfc-editor.org/errata/rfc5012 + https://www.rfc-editor.org/errata/rfc5012/ 10.17487/RFC5012 @@ -161473,7 +161473,7 @@ IETF rtg pim - https://www.rfc-editor.org/errata/rfc5015 + https://www.rfc-editor.org/errata/rfc5015/ 10.17487/RFC5015 @@ -161602,7 +161602,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc5019 + https://www.rfc-editor.org/errata/rfc5019/ 10.17487/RFC5019 @@ -161694,7 +161694,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc5022 + https://www.rfc-editor.org/errata/rfc5022/ 10.17487/RFC5022 @@ -161732,7 +161732,7 @@ IETF app atompub - https://www.rfc-editor.org/errata/rfc5023 + https://www.rfc-editor.org/errata/rfc5023/ 10.17487/RFC5023 @@ -161761,7 +161761,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc5024 + https://www.rfc-editor.org/errata/rfc5024/ 10.17487/RFC5024 @@ -161792,7 +161792,7 @@ IETF rai simple - https://www.rfc-editor.org/errata/rfc5025 + https://www.rfc-editor.org/errata/rfc5025/ 10.17487/RFC5025 @@ -162006,7 +162006,7 @@ IETF rai ecrit - https://www.rfc-editor.org/errata/rfc5031 + https://www.rfc-editor.org/errata/rfc5031/ 10.17487/RFC5031 @@ -162143,7 +162143,7 @@ IETF sec smime - https://www.rfc-editor.org/errata/rfc5035 + https://www.rfc-editor.org/errata/rfc5035/ 10.17487/RFC5035 @@ -162191,7 +162191,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc5036 + https://www.rfc-editor.org/errata/rfc5036/ 10.17487/RFC5036 @@ -162487,7 +162487,7 @@ IETF tsv rddp - https://www.rfc-editor.org/errata/rfc5044 + https://www.rfc-editor.org/errata/rfc5044/ 10.17487/RFC5044 @@ -162721,7 +162721,7 @@ EXPERIMENTAL EXPERIMENTAL IRTF - https://www.rfc-editor.org/errata/rfc5050 + https://www.rfc-editor.org/errata/rfc5050/ 10.17487/RFC5050 @@ -162785,7 +162785,7 @@ IETF tsv rmt - https://www.rfc-editor.org/errata/rfc5052 + https://www.rfc-editor.org/errata/rfc5052/ 10.17487/RFC5052 @@ -162864,7 +162864,7 @@ IETF sec tls - https://www.rfc-editor.org/errata/rfc5054 + https://www.rfc-editor.org/errata/rfc5054/ 10.17487/RFC5054 @@ -162930,7 +162930,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5056 + https://www.rfc-editor.org/errata/rfc5056/ 10.17487/RFC5056 @@ -162992,7 +162992,7 @@ EXPERIMENTAL EXPERIMENTAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc5058 + https://www.rfc-editor.org/errata/rfc5058/ 10.17487/RFC5058 @@ -163042,7 +163042,7 @@ IETF rtg pim - https://www.rfc-editor.org/errata/rfc5059 + https://www.rfc-editor.org/errata/rfc5059/ 10.17487/RFC5059 @@ -163088,7 +163088,7 @@ IETF rtg pim - https://www.rfc-editor.org/errata/rfc5060 + https://www.rfc-editor.org/errata/rfc5060/ 10.17487/RFC5060 @@ -163195,7 +163195,7 @@ IETF rtg ccamp - https://www.rfc-editor.org/errata/rfc5063 + https://www.rfc-editor.org/errata/rfc5063/ 10.17487/RFC5063 @@ -163259,7 +163259,7 @@ IETF rtg idr - https://www.rfc-editor.org/errata/rfc5065 + https://www.rfc-editor.org/errata/rfc5065/ 10.17487/RFC5065 @@ -163495,7 +163495,7 @@ IETF sec inch - https://www.rfc-editor.org/errata/rfc5070 + https://www.rfc-editor.org/errata/rfc5070/ 10.17487/RFC5070 @@ -163665,7 +163665,7 @@ IETF int ipv6 - https://www.rfc-editor.org/errata/rfc5075 + https://www.rfc-editor.org/errata/rfc5075/ 10.17487/RFC5075 @@ -163740,7 +163740,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5077 + https://www.rfc-editor.org/errata/rfc5077/ 10.17487/RFC5077 @@ -163837,7 +163837,7 @@ IETF sec radext - https://www.rfc-editor.org/errata/rfc5080 + https://www.rfc-editor.org/errata/rfc5080/ 10.17487/RFC5080 @@ -163970,7 +163970,7 @@ IETF sec smime - https://www.rfc-editor.org/errata/rfc5084 + https://www.rfc-editor.org/errata/rfc5084/ 10.17487/RFC5084 @@ -164006,7 +164006,7 @@ IETF int pwe3 - https://www.rfc-editor.org/errata/rfc5085 + https://www.rfc-editor.org/errata/rfc5085/ 10.17487/RFC5085 @@ -164088,7 +164088,7 @@ IETF int pwe3 - https://www.rfc-editor.org/errata/rfc5087 + https://www.rfc-editor.org/errata/rfc5087/ 10.17487/RFC5087 @@ -164132,7 +164132,7 @@ IETF rtg pce - https://www.rfc-editor.org/errata/rfc5088 + https://www.rfc-editor.org/errata/rfc5088/ 10.17487/RFC5088 @@ -164176,7 +164176,7 @@ IETF rtg pce - https://www.rfc-editor.org/errata/rfc5089 + https://www.rfc-editor.org/errata/rfc5089/ 10.17487/RFC5089 @@ -164221,7 +164221,7 @@ IETF sec radext - https://www.rfc-editor.org/errata/rfc5090 + https://www.rfc-editor.org/errata/rfc5090/ 10.17487/RFC5090 @@ -164263,7 +164263,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5091 + https://www.rfc-editor.org/errata/rfc5091/ 10.17487/RFC5091 @@ -164312,7 +164312,7 @@ IETF app lemonade - https://www.rfc-editor.org/errata/rfc5092 + https://www.rfc-editor.org/errata/rfc5092/ 10.17487/RFC5092 @@ -164520,7 +164520,7 @@ IETF ops ipcdn - https://www.rfc-editor.org/errata/rfc5098 + https://www.rfc-editor.org/errata/rfc5098/ 10.17487/RFC5098 @@ -164560,7 +164560,7 @@ IETF ops ipfix - https://www.rfc-editor.org/errata/rfc5101 + https://www.rfc-editor.org/errata/rfc5101/ 10.17487/RFC5101 @@ -164611,7 +164611,7 @@ IETF ops ipfix - https://www.rfc-editor.org/errata/rfc5102 + https://www.rfc-editor.org/errata/rfc5102/ 10.17487/RFC5102 @@ -164643,7 +164643,7 @@ IETF ops ipfix - https://www.rfc-editor.org/errata/rfc5103 + https://www.rfc-editor.org/errata/rfc5103/ 10.17487/RFC5103 @@ -164761,7 +164761,7 @@ EXPERIMENTAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5106 + https://www.rfc-editor.org/errata/rfc5106/ 10.17487/RFC5106 @@ -164838,7 +164838,7 @@ IETF rai avt - https://www.rfc-editor.org/errata/rfc5109 + https://www.rfc-editor.org/errata/rfc5109/ 10.17487/RFC5109 @@ -165026,7 +165026,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5115 + https://www.rfc-editor.org/errata/rfc5115/ 10.17487/RFC5115 @@ -165056,7 +165056,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5116 + https://www.rfc-editor.org/errata/rfc5116/ 10.17487/RFC5116 @@ -165091,7 +165091,7 @@ IETF rai avt - https://www.rfc-editor.org/errata/rfc5117 + https://www.rfc-editor.org/errata/rfc5117/ 10.17487/RFC5117 @@ -165127,7 +165127,7 @@ IETF rai sipping - https://www.rfc-editor.org/errata/rfc5118 + https://www.rfc-editor.org/errata/rfc5118/ 10.17487/RFC5118 @@ -165155,7 +165155,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5119 + https://www.rfc-editor.org/errata/rfc5119/ 10.17487/RFC5119 @@ -165232,7 +165232,7 @@ IETF int 16ng - https://www.rfc-editor.org/errata/rfc5121 + https://www.rfc-editor.org/errata/rfc5121/ 10.17487/RFC5121 @@ -165297,7 +165297,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc5123 + https://www.rfc-editor.org/errata/rfc5123/ 10.17487/RFC5123 @@ -165469,7 +165469,7 @@ IETF tsv behave - https://www.rfc-editor.org/errata/rfc5128 + https://www.rfc-editor.org/errata/rfc5128/ 10.17487/RFC5128 @@ -165680,7 +165680,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5134 + https://www.rfc-editor.org/errata/rfc5134/ 10.17487/RFC5134 @@ -165715,7 +165715,7 @@ IETF tsv behave - https://www.rfc-editor.org/errata/rfc5135 + https://www.rfc-editor.org/errata/rfc5135/ 10.17487/RFC5135 @@ -165786,7 +165786,7 @@ BEST CURRENT PRACTICE IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5137 + https://www.rfc-editor.org/errata/rfc5137/ 10.17487/RFC5137 @@ -165890,7 +165890,7 @@ IETF rai iptel - https://www.rfc-editor.org/errata/rfc5140 + https://www.rfc-editor.org/errata/rfc5140/ 10.17487/RFC5140 @@ -165922,7 +165922,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5141 + https://www.rfc-editor.org/errata/rfc5141/ 10.17487/RFC5141 @@ -166031,7 +166031,7 @@ IETF app crisp - https://www.rfc-editor.org/errata/rfc5144 + https://www.rfc-editor.org/errata/rfc5144/ 10.17487/RFC5144 @@ -166158,7 +166158,7 @@ IETF rtg manet - https://www.rfc-editor.org/errata/rfc5148 + https://www.rfc-editor.org/errata/rfc5148/ 10.17487/RFC5148 @@ -166236,7 +166236,7 @@ IETF rtg ccamp - https://www.rfc-editor.org/errata/rfc5150 + https://www.rfc-editor.org/errata/rfc5150/ 10.17487/RFC5150 @@ -166276,7 +166276,7 @@ IETF rtg ccamp - https://www.rfc-editor.org/errata/rfc5151 + https://www.rfc-editor.org/errata/rfc5151/ 10.17487/RFC5151 @@ -166355,7 +166355,7 @@ IETF ops ipfix - https://www.rfc-editor.org/errata/rfc5153 + https://www.rfc-editor.org/errata/rfc5153/ 10.17487/RFC5153 @@ -166438,7 +166438,7 @@ IETF int dnsext - https://www.rfc-editor.org/errata/rfc5155 + https://www.rfc-editor.org/errata/rfc5155/ 10.17487/RFC5155 @@ -166529,7 +166529,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5158 + https://www.rfc-editor.org/errata/rfc5158/ 10.17487/RFC5158 @@ -166661,7 +166661,7 @@ IETF app lemonade - https://www.rfc-editor.org/errata/rfc5162 + https://www.rfc-editor.org/errata/rfc5162/ 10.17487/RFC5162 @@ -166889,7 +166889,7 @@ IETF sec hokey - https://www.rfc-editor.org/errata/rfc5169 + https://www.rfc-editor.org/errata/rfc5169/ 10.17487/RFC5169 @@ -167141,7 +167141,7 @@ IETF sec radext - https://www.rfc-editor.org/errata/rfc5176 + https://www.rfc-editor.org/errata/rfc5176/ 10.17487/RFC5176 @@ -167287,7 +167287,7 @@ IETF ops bmwg - https://www.rfc-editor.org/errata/rfc5180 + https://www.rfc-editor.org/errata/rfc5180/ 10.17487/RFC5180 @@ -167464,7 +167464,7 @@ IETF rtg ospf - https://www.rfc-editor.org/errata/rfc5185 + https://www.rfc-editor.org/errata/rfc5185/ 10.17487/RFC5185 @@ -167526,7 +167526,7 @@ IETF rtg ospf - https://www.rfc-editor.org/errata/rfc5187 + https://www.rfc-editor.org/errata/rfc5187/ 10.17487/RFC5187 @@ -167675,7 +167675,7 @@ IETF int pana - https://www.rfc-editor.org/errata/rfc5191 + https://www.rfc-editor.org/errata/rfc5191/ 10.17487/RFC5191 @@ -167949,7 +167949,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5198 + https://www.rfc-editor.org/errata/rfc5198/ 10.17487/RFC5198 @@ -168002,7 +168002,7 @@ IETF int hip - https://www.rfc-editor.org/errata/rfc5201 + https://www.rfc-editor.org/errata/rfc5201/ 10.17487/RFC5201 @@ -168039,7 +168039,7 @@ IETF int hip - https://www.rfc-editor.org/errata/rfc5202 + https://www.rfc-editor.org/errata/rfc5202/ 10.17487/RFC5202 @@ -168260,7 +168260,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5208 + https://www.rfc-editor.org/errata/rfc5208/ 10.17487/RFC5208 @@ -168462,7 +168462,7 @@ IETF int netlmm - https://www.rfc-editor.org/errata/rfc5213 + https://www.rfc-editor.org/errata/rfc5213/ 10.17487/RFC5213 @@ -168529,7 +168529,7 @@ IETF rai avt - https://www.rfc-editor.org/errata/rfc5215 + https://www.rfc-editor.org/errata/rfc5215/ 10.17487/RFC5215 @@ -168574,7 +168574,7 @@ IETF sec emu - https://www.rfc-editor.org/errata/rfc5216 + https://www.rfc-editor.org/errata/rfc5216/ 10.17487/RFC5216 @@ -168704,7 +168704,7 @@ IETF ops v6ops - https://www.rfc-editor.org/errata/rfc5220 + https://www.rfc-editor.org/errata/rfc5220/ 10.17487/RFC5220 @@ -168783,7 +168783,7 @@ IETF rai ecrit - https://www.rfc-editor.org/errata/rfc5222 + https://www.rfc-editor.org/errata/rfc5222/ 10.17487/RFC5222 @@ -168883,7 +168883,7 @@ IETF tsv rohc - https://www.rfc-editor.org/errata/rfc5225 + https://www.rfc-editor.org/errata/rfc5225/ 10.17487/RFC5225 @@ -168924,7 +168924,7 @@ BEST CURRENT PRACTICE IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5226 + https://www.rfc-editor.org/errata/rfc5226/ 10.17487/RFC5226 @@ -168954,7 +168954,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5227 + https://www.rfc-editor.org/errata/rfc5227/ 10.17487/RFC5227 @@ -168993,7 +168993,7 @@ IETF app sieve - https://www.rfc-editor.org/errata/rfc5228 + https://www.rfc-editor.org/errata/rfc5228/ 10.17487/RFC5228 @@ -169026,7 +169026,7 @@ IETF app sieve - https://www.rfc-editor.org/errata/rfc5229 + https://www.rfc-editor.org/errata/rfc5229/ 10.17487/RFC5229 @@ -169061,7 +169061,7 @@ IETF app sieve - https://www.rfc-editor.org/errata/rfc5230 + https://www.rfc-editor.org/errata/rfc5230/ 10.17487/RFC5230 @@ -169126,7 +169126,7 @@ IETF app sieve - https://www.rfc-editor.org/errata/rfc5232 + https://www.rfc-editor.org/errata/rfc5232/ 10.17487/RFC5232 @@ -169160,7 +169160,7 @@ IETF app sieve - https://www.rfc-editor.org/errata/rfc5233 + https://www.rfc-editor.org/errata/rfc5233/ 10.17487/RFC5233 @@ -169205,7 +169205,7 @@ INTERNET STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5234 + https://www.rfc-editor.org/errata/rfc5234/ 10.17487/RFC5234 @@ -169320,7 +169320,7 @@ BEST CURRENT PRACTICE IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5237 + https://www.rfc-editor.org/errata/rfc5237/ 10.17487/RFC5237 @@ -169386,7 +169386,7 @@ IETF rai xcon - https://www.rfc-editor.org/errata/rfc5239 + https://www.rfc-editor.org/errata/rfc5239/ 10.17487/RFC5239 @@ -169420,7 +169420,7 @@ IETF rtg pim - https://www.rfc-editor.org/errata/rfc5240 + https://www.rfc-editor.org/errata/rfc5240/ 10.17487/RFC5240 @@ -169509,7 +169509,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5243 + https://www.rfc-editor.org/errata/rfc5243/ 10.17487/RFC5243 @@ -169579,7 +169579,7 @@ IETF rai mmusic - https://www.rfc-editor.org/errata/rfc5245 + https://www.rfc-editor.org/errata/rfc5245/ 10.17487/RFC5245 @@ -169640,7 +169640,7 @@ IETF sec tls - https://www.rfc-editor.org/errata/rfc5246 + https://www.rfc-editor.org/errata/rfc5246/ 10.17487/RFC5246 @@ -169682,7 +169682,7 @@ IETF int eap - https://www.rfc-editor.org/errata/rfc5247 + https://www.rfc-editor.org/errata/rfc5247/ 10.17487/RFC5247 @@ -169720,7 +169720,7 @@ BEST CURRENT PRACTICE IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5248 + https://www.rfc-editor.org/errata/rfc5248/ 10.17487/RFC5248 @@ -169797,7 +169797,7 @@ IETF rtg ospf - https://www.rfc-editor.org/errata/rfc5250 + https://www.rfc-editor.org/errata/rfc5250/ 10.17487/RFC5250 @@ -169841,7 +169841,7 @@ IETF rtg l1vpn - https://www.rfc-editor.org/errata/rfc5251 + https://www.rfc-editor.org/errata/rfc5251/ 10.17487/RFC5251 @@ -169874,7 +169874,7 @@ IETF rtg l1vpn - https://www.rfc-editor.org/errata/rfc5252 + https://www.rfc-editor.org/errata/rfc5252/ 10.17487/RFC5252 @@ -169947,7 +169947,7 @@ IETF int pwe3 - https://www.rfc-editor.org/errata/rfc5254 + https://www.rfc-editor.org/errata/rfc5254/ 10.17487/RFC5254 @@ -169983,7 +169983,7 @@ IETF app imapext - https://www.rfc-editor.org/errata/rfc5255 + https://www.rfc-editor.org/errata/rfc5255/ 10.17487/RFC5255 @@ -170048,7 +170048,7 @@ IETF app imapext - https://www.rfc-editor.org/errata/rfc5257 + https://www.rfc-editor.org/errata/rfc5257/ 10.17487/RFC5257 @@ -170147,7 +170147,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5260 + https://www.rfc-editor.org/errata/rfc5260/ 10.17487/RFC5260 @@ -170174,7 +170174,7 @@ IETF rai simple - https://www.rfc-editor.org/errata/rfc5261 + https://www.rfc-editor.org/errata/rfc5261/ 10.17487/RFC5261 @@ -170559,7 +170559,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc5272 + https://www.rfc-editor.org/errata/rfc5272/ 10.17487/RFC5272 @@ -170597,7 +170597,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc5273 + https://www.rfc-editor.org/errata/rfc5273/ 10.17487/RFC5273 @@ -170662,7 +170662,7 @@ IETF sec smime - https://www.rfc-editor.org/errata/rfc5275 + https://www.rfc-editor.org/errata/rfc5275/ 10.17487/RFC5275 @@ -170729,7 +170729,7 @@ IETF ops netconf - https://www.rfc-editor.org/errata/rfc5277 + https://www.rfc-editor.org/errata/rfc5277/ 10.17487/RFC5277 @@ -170802,7 +170802,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5279 + https://www.rfc-editor.org/errata/rfc5279/ 10.17487/RFC5279 @@ -170861,7 +170861,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc5280 + https://www.rfc-editor.org/errata/rfc5280/ 10.17487/RFC5280 @@ -170898,7 +170898,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5281 + https://www.rfc-editor.org/errata/rfc5281/ 10.17487/RFC5281 @@ -170936,7 +170936,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5282 + https://www.rfc-editor.org/errata/rfc5282/ 10.17487/RFC5282 @@ -170972,7 +170972,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc5283 + https://www.rfc-editor.org/errata/rfc5283/ 10.17487/RFC5283 @@ -171078,7 +171078,7 @@ IETF rtg rtgwg - https://www.rfc-editor.org/errata/rfc5286 + https://www.rfc-editor.org/errata/rfc5286/ 10.17487/RFC5286 @@ -171151,7 +171151,7 @@ IETF sec tls - https://www.rfc-editor.org/errata/rfc5288 + https://www.rfc-editor.org/errata/rfc5288/ 10.17487/RFC5288 @@ -171239,7 +171239,7 @@ IETF rtg idr - https://www.rfc-editor.org/errata/rfc5291 + https://www.rfc-editor.org/errata/rfc5291/ 10.17487/RFC5291 @@ -171374,7 +171374,7 @@ IETF sec hokey - https://www.rfc-editor.org/errata/rfc5295 + https://www.rfc-editor.org/errata/rfc5295/ 10.17487/RFC5295 @@ -171409,7 +171409,7 @@ IETF sec hokey - https://www.rfc-editor.org/errata/rfc5296 + https://www.rfc-editor.org/errata/rfc5296/ 10.17487/RFC5296 @@ -171481,7 +171481,7 @@ IETF rtg ccamp - https://www.rfc-editor.org/errata/rfc5298 + https://www.rfc-editor.org/errata/rfc5298/ 10.17487/RFC5298 @@ -171527,7 +171527,7 @@ IETF rtg isis - https://www.rfc-editor.org/errata/rfc5301 + https://www.rfc-editor.org/errata/rfc5301/ 10.17487/RFC5301 @@ -171571,7 +171571,7 @@ IETF rtg isis - https://www.rfc-editor.org/errata/rfc5302 + https://www.rfc-editor.org/errata/rfc5302/ 10.17487/RFC5302 @@ -171608,7 +171608,7 @@ IETF rtg isis - https://www.rfc-editor.org/errata/rfc5303 + https://www.rfc-editor.org/errata/rfc5303/ 10.17487/RFC5303 @@ -171779,7 +171779,7 @@ IETF rtg isis - https://www.rfc-editor.org/errata/rfc5307 + https://www.rfc-editor.org/errata/rfc5307/ 10.17487/RFC5307 @@ -171844,7 +171844,7 @@ IETF rtg isis - https://www.rfc-editor.org/errata/rfc5309 + https://www.rfc-editor.org/errata/rfc5309/ 10.17487/RFC5309 @@ -171894,7 +171894,7 @@ IETF rtg isis - https://www.rfc-editor.org/errata/rfc5310 + https://www.rfc-editor.org/errata/rfc5310/ 10.17487/RFC5310 @@ -172026,7 +172026,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5317 + https://www.rfc-editor.org/errata/rfc5317/ 10.17487/RFC5317 @@ -172062,7 +172062,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5318 + https://www.rfc-editor.org/errata/rfc5318/ 10.17487/RFC5318 @@ -172094,7 +172094,7 @@ EXPERIMENTAL EXPERIMENTAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc5320 + https://www.rfc-editor.org/errata/rfc5320/ 10.17487/RFC5320 @@ -172130,7 +172130,7 @@ DRAFT STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5321 + https://www.rfc-editor.org/errata/rfc5321/ 10.17487/RFC5321 @@ -172201,7 +172201,7 @@ DRAFT STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5322 + https://www.rfc-editor.org/errata/rfc5322/ 10.17487/RFC5322 @@ -172345,7 +172345,7 @@ EXPERIMENTAL EXPERIMENTAL IRTF - https://www.rfc-editor.org/errata/rfc5326 + https://www.rfc-editor.org/errata/rfc5326/ 10.17487/RFC5326 @@ -172421,7 +172421,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5328 + https://www.rfc-editor.org/errata/rfc5328/ 10.17487/RFC5328 @@ -172535,7 +172535,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc5331 + https://www.rfc-editor.org/errata/rfc5331/ 10.17487/RFC5331 @@ -172696,7 +172696,7 @@ IETF app eai - https://www.rfc-editor.org/errata/rfc5335 + https://www.rfc-editor.org/errata/rfc5335/ 10.17487/RFC5335 @@ -172740,7 +172740,7 @@ IETF app eai - https://www.rfc-editor.org/errata/rfc5336 + https://www.rfc-editor.org/errata/rfc5336/ 10.17487/RFC5336 @@ -172783,7 +172783,7 @@ IETF app eai - https://www.rfc-editor.org/errata/rfc5337 + https://www.rfc-editor.org/errata/rfc5337/ 10.17487/RFC5337 @@ -172853,7 +172853,7 @@ IETF rtg ccamp - https://www.rfc-editor.org/errata/rfc5339 + https://www.rfc-editor.org/errata/rfc5339/ 10.17487/RFC5339 @@ -172901,7 +172901,7 @@ IETF rtg ospf - https://www.rfc-editor.org/errata/rfc5340 + https://www.rfc-editor.org/errata/rfc5340/ 10.17487/RFC5340 @@ -173072,7 +173072,7 @@ INFORMATIONAL INFORMATIONAL IRTF - https://www.rfc-editor.org/errata/rfc5345 + https://www.rfc-editor.org/errata/rfc5345/ 10.17487/RFC5345 @@ -173115,7 +173115,7 @@ IETF rai enum - https://www.rfc-editor.org/errata/rfc5346 + https://www.rfc-editor.org/errata/rfc5346/ 10.17487/RFC5346 @@ -173148,7 +173148,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5347 + https://www.rfc-editor.org/errata/rfc5347/ 10.17487/RFC5347 @@ -173192,7 +173192,7 @@ IETF tsv dccp - https://www.rfc-editor.org/errata/rfc5348 + https://www.rfc-editor.org/errata/rfc5348/ 10.17487/RFC5348 @@ -173528,7 +173528,7 @@ IETF ops ippm - https://www.rfc-editor.org/errata/rfc5357 + https://www.rfc-editor.org/errata/rfc5357/ 10.17487/RFC5357 @@ -173618,7 +173618,7 @@ IETF rai sipping - https://www.rfc-editor.org/errata/rfc5359 + https://www.rfc-editor.org/errata/rfc5359/ 10.17487/RFC5359 @@ -173653,7 +173653,7 @@ IETF rai sip - https://www.rfc-editor.org/errata/rfc5360 + https://www.rfc-editor.org/errata/rfc5360/ 10.17487/RFC5360 @@ -174180,7 +174180,7 @@ IETF ops v6ops - https://www.rfc-editor.org/errata/rfc5375 + https://www.rfc-editor.org/errata/rfc5375/ 10.17487/RFC5375 @@ -174261,7 +174261,7 @@ IETF gen ipr - https://www.rfc-editor.org/errata/rfc5377 + https://www.rfc-editor.org/errata/rfc5377/ 10.17487/RFC5377 @@ -174306,7 +174306,7 @@ IETF gen ipr - https://www.rfc-editor.org/errata/rfc5378 + https://www.rfc-editor.org/errata/rfc5378/ 10.17487/RFC5378 @@ -174424,7 +174424,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5381 + https://www.rfc-editor.org/errata/rfc5381/ 10.17487/RFC5381 @@ -174539,7 +174539,7 @@ IETF rtg pim - https://www.rfc-editor.org/errata/rfc5384 + https://www.rfc-editor.org/errata/rfc5384/ 10.17487/RFC5384 @@ -174572,7 +174572,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc5385 + https://www.rfc-editor.org/errata/rfc5385/ 10.17487/RFC5385 @@ -174612,7 +174612,7 @@ IETF sec btns - https://www.rfc-editor.org/errata/rfc5386 + https://www.rfc-editor.org/errata/rfc5386/ 10.17487/RFC5386 @@ -174650,7 +174650,7 @@ IETF sec btns - https://www.rfc-editor.org/errata/rfc5387 + https://www.rfc-editor.org/errata/rfc5387/ 10.17487/RFC5387 @@ -174744,7 +174744,7 @@ IETF tsv behave - https://www.rfc-editor.org/errata/rfc5389 + https://www.rfc-editor.org/errata/rfc5389/ 10.17487/RFC5389 @@ -174966,7 +174966,7 @@ IETF int dnsext - https://www.rfc-editor.org/errata/rfc5395 + https://www.rfc-editor.org/errata/rfc5395/ 10.17487/RFC5395 @@ -175128,7 +175128,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc5402 + https://www.rfc-editor.org/errata/rfc5402/ 10.17487/RFC5402 @@ -175209,7 +175209,7 @@ IETF rai avt - https://www.rfc-editor.org/errata/rfc5404 + https://www.rfc-editor.org/errata/rfc5404/ 10.17487/RFC5404 @@ -175352,7 +175352,7 @@ IETF sec smime - https://www.rfc-editor.org/errata/rfc5408 + https://www.rfc-editor.org/errata/rfc5408/ 10.17487/RFC5408 @@ -175496,7 +175496,7 @@ HISTORIC HISTORIC INDEPENDENT - https://www.rfc-editor.org/errata/rfc5412 + https://www.rfc-editor.org/errata/rfc5412/ 10.17487/RFC5412 @@ -175570,7 +175570,7 @@ HISTORIC HISTORIC INDEPENDENT - https://www.rfc-editor.org/errata/rfc5414 + https://www.rfc-editor.org/errata/rfc5414/ 10.17487/RFC5414 @@ -175622,7 +175622,7 @@ IETF ops capwap - https://www.rfc-editor.org/errata/rfc5415 + https://www.rfc-editor.org/errata/rfc5415/ 10.17487/RFC5415 @@ -175668,7 +175668,7 @@ IETF ops capwap - https://www.rfc-editor.org/errata/rfc5416 + https://www.rfc-editor.org/errata/rfc5416/ 10.17487/RFC5416 @@ -175815,7 +175815,7 @@ IETF rtg ccamp - https://www.rfc-editor.org/errata/rfc5420 + https://www.rfc-editor.org/errata/rfc5420/ 10.17487/RFC5420 @@ -175911,7 +175911,7 @@ IETF app lemonade - https://www.rfc-editor.org/errata/rfc5423 + https://www.rfc-editor.org/errata/rfc5423/ 10.17487/RFC5423 @@ -175948,7 +175948,7 @@ IETF sec syslog - https://www.rfc-editor.org/errata/rfc5424 + https://www.rfc-editor.org/errata/rfc5424/ 10.17487/RFC5424 @@ -175989,7 +175989,7 @@ IETF sec syslog - https://www.rfc-editor.org/errata/rfc5425 + https://www.rfc-editor.org/errata/rfc5425/ 10.17487/RFC5425 @@ -176128,7 +176128,7 @@ IETF app sieve - https://www.rfc-editor.org/errata/rfc5429 + https://www.rfc-editor.org/errata/rfc5429/ 10.17487/RFC5429 @@ -176425,7 +176425,7 @@ IETF rai simple - https://www.rfc-editor.org/errata/rfc5438 + https://www.rfc-editor.org/errata/rfc5438/ 10.17487/RFC5438 @@ -176464,7 +176464,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc5439 + https://www.rfc-editor.org/errata/rfc5439/ 10.17487/RFC5439 @@ -176506,7 +176506,7 @@ IETF rtg pce - https://www.rfc-editor.org/errata/rfc5440 + https://www.rfc-editor.org/errata/rfc5440/ 10.17487/RFC5440 @@ -176545,7 +176545,7 @@ IETF rtg pce - https://www.rfc-editor.org/errata/rfc5441 + https://www.rfc-editor.org/errata/rfc5441/ 10.17487/RFC5441 @@ -176614,7 +176614,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc5443 + https://www.rfc-editor.org/errata/rfc5443/ 10.17487/RFC5443 @@ -176657,7 +176657,7 @@ IETF rtg manet - https://www.rfc-editor.org/errata/rfc5444 + https://www.rfc-editor.org/errata/rfc5444/ 10.17487/RFC5444 @@ -176693,7 +176693,7 @@ IETF tsv rmt - https://www.rfc-editor.org/errata/rfc5445 + https://www.rfc-editor.org/errata/rfc5445/ 10.17487/RFC5445 @@ -176767,7 +176767,7 @@ IETF ops dime - https://www.rfc-editor.org/errata/rfc5447 + https://www.rfc-editor.org/errata/rfc5447/ 10.17487/RFC5447 @@ -176847,7 +176847,7 @@ IETF rtg ospf - https://www.rfc-editor.org/errata/rfc5449 + https://www.rfc-editor.org/errata/rfc5449/ 10.17487/RFC5449 @@ -176913,7 +176913,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5451 + https://www.rfc-editor.org/errata/rfc5451/ 10.17487/RFC5451 @@ -176976,7 +176976,7 @@ IETF int 6man - https://www.rfc-editor.org/errata/rfc5453 + https://www.rfc-editor.org/errata/rfc5453/ 10.17487/RFC5453 @@ -177011,7 +177011,7 @@ IETF int mip4 - https://www.rfc-editor.org/errata/rfc5454 + https://www.rfc-editor.org/errata/rfc5454/ 10.17487/RFC5454 @@ -177052,7 +177052,7 @@ IETF rtg pce - https://www.rfc-editor.org/errata/rfc5455 + https://www.rfc-editor.org/errata/rfc5455/ 10.17487/RFC5455 @@ -177126,7 +177126,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc5457 + https://www.rfc-editor.org/errata/rfc5457/ 10.17487/RFC5457 @@ -177168,7 +177168,7 @@ IETF int ipdvb - https://www.rfc-editor.org/errata/rfc5458 + https://www.rfc-editor.org/errata/rfc5458/ 10.17487/RFC5458 @@ -177236,7 +177236,7 @@ IETF int dhc - https://www.rfc-editor.org/errata/rfc5460 + https://www.rfc-editor.org/errata/rfc5460/ 10.17487/RFC5460 @@ -177313,7 +177313,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc5462 + https://www.rfc-editor.org/errata/rfc5462/ 10.17487/RFC5462 @@ -177370,7 +177370,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5464 + https://www.rfc-editor.org/errata/rfc5464/ 10.17487/RFC5464 @@ -177407,7 +177407,7 @@ IETF app lemonade - https://www.rfc-editor.org/errata/rfc5465 + https://www.rfc-editor.org/errata/rfc5465/ 10.17487/RFC5465 @@ -177482,7 +177482,7 @@ IETF rtg ccamp - https://www.rfc-editor.org/errata/rfc5467 + https://www.rfc-editor.org/errata/rfc5467/ 10.17487/RFC5467 @@ -177669,7 +177669,7 @@ IETF ops ipfix - https://www.rfc-editor.org/errata/rfc5472 + https://www.rfc-editor.org/errata/rfc5472/ 10.17487/RFC5472 @@ -177700,7 +177700,7 @@ IETF ops ipfix - https://www.rfc-editor.org/errata/rfc5473 + https://www.rfc-editor.org/errata/rfc5473/ 10.17487/RFC5473 @@ -177823,7 +177823,7 @@ IETF ops psamp - https://www.rfc-editor.org/errata/rfc5476 + https://www.rfc-editor.org/errata/rfc5476/ 10.17487/RFC5476 @@ -177865,7 +177865,7 @@ IETF ops psamp - https://www.rfc-editor.org/errata/rfc5477 + https://www.rfc-editor.org/errata/rfc5477/ 10.17487/RFC5477 @@ -177932,7 +177932,7 @@ IETF rai sip - https://www.rfc-editor.org/errata/rfc5479 + https://www.rfc-editor.org/errata/rfc5479/ 10.17487/RFC5479 @@ -177980,7 +177980,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc5480 + https://www.rfc-editor.org/errata/rfc5480/ 10.17487/RFC5480 @@ -178341,7 +178341,7 @@ IETF rai geopriv - https://www.rfc-editor.org/errata/rfc5491 + https://www.rfc-editor.org/errata/rfc5491/ 10.17487/RFC5491 @@ -178381,7 +178381,7 @@ IETF rtg idr - https://www.rfc-editor.org/errata/rfc5492 + https://www.rfc-editor.org/errata/rfc5492/ 10.17487/RFC5492 @@ -178539,7 +178539,7 @@ IETF rtg pim - https://www.rfc-editor.org/errata/rfc5496 + https://www.rfc-editor.org/errata/rfc5496/ 10.17487/RFC5496 @@ -178577,7 +178577,7 @@ IETF rtg manet - https://www.rfc-editor.org/errata/rfc5497 + https://www.rfc-editor.org/errata/rfc5497/ 10.17487/RFC5497 @@ -178605,7 +178605,7 @@ IETF rtg manet - https://www.rfc-editor.org/errata/rfc5498 + https://www.rfc-editor.org/errata/rfc5498/ 10.17487/RFC5498 @@ -178692,7 +178692,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5502 + https://www.rfc-editor.org/errata/rfc5502/ 10.17487/RFC5502 @@ -178844,7 +178844,7 @@ IETF rai avt - https://www.rfc-editor.org/errata/rfc5506 + https://www.rfc-editor.org/errata/rfc5506/ 10.17487/RFC5506 @@ -179085,7 +179085,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc5513 + https://www.rfc-editor.org/errata/rfc5513/ 10.17487/RFC5513 @@ -179112,7 +179112,7 @@ EXPERIMENTAL EXPERIMENTAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc5514 + https://www.rfc-editor.org/errata/rfc5514/ 10.17487/RFC5514 @@ -179153,7 +179153,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5515 + https://www.rfc-editor.org/errata/rfc5515/ 10.17487/RFC5515 @@ -179251,7 +179251,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5518 + https://www.rfc-editor.org/errata/rfc5518/ 10.17487/RFC5518 @@ -179291,7 +179291,7 @@ IETF int magma - https://www.rfc-editor.org/errata/rfc5519 + https://www.rfc-editor.org/errata/rfc5519/ 10.17487/RFC5519 @@ -179328,7 +179328,7 @@ IETF rtg pce - https://www.rfc-editor.org/errata/rfc5520 + https://www.rfc-editor.org/errata/rfc5520/ 10.17487/RFC5520 @@ -179365,7 +179365,7 @@ IETF rtg pce - https://www.rfc-editor.org/errata/rfc5521 + https://www.rfc-editor.org/errata/rfc5521/ 10.17487/RFC5521 @@ -179459,7 +179459,7 @@ IETF app lemonade - https://www.rfc-editor.org/errata/rfc5524 + https://www.rfc-editor.org/errata/rfc5524/ 10.17487/RFC5524 @@ -179657,7 +179657,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5530 + https://www.rfc-editor.org/errata/rfc5530/ 10.17487/RFC5530 @@ -179693,7 +179693,7 @@ IETF wit nfsv4 - https://www.rfc-editor.org/errata/rfc5531 + https://www.rfc-editor.org/errata/rfc5531/ 10.17487/RFC5531 @@ -179858,7 +179858,7 @@ IETF app usefor - https://www.rfc-editor.org/errata/rfc5536 + https://www.rfc-editor.org/errata/rfc5536/ 10.17487/RFC5536 @@ -179899,7 +179899,7 @@ IETF app usefor - https://www.rfc-editor.org/errata/rfc5537 + https://www.rfc-editor.org/errata/rfc5537/ 10.17487/RFC5537 @@ -179923,7 +179923,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5538 + https://www.rfc-editor.org/errata/rfc5538/ 10.17487/RFC5538 @@ -180125,7 +180125,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc5544 + https://www.rfc-editor.org/errata/rfc5544/ 10.17487/RFC5544 @@ -180188,7 +180188,7 @@ IETF app calsify - https://www.rfc-editor.org/errata/rfc5545 + https://www.rfc-editor.org/errata/rfc5545/ 10.17487/RFC5545 @@ -180227,7 +180227,7 @@ IETF app calsify - https://www.rfc-editor.org/errata/rfc5546 + https://www.rfc-editor.org/errata/rfc5546/ 10.17487/RFC5546 @@ -180268,7 +180268,7 @@ IETF rai mmusic - https://www.rfc-editor.org/errata/rfc5547 + https://www.rfc-editor.org/errata/rfc5547/ 10.17487/RFC5547 @@ -180346,7 +180346,7 @@ IETF int softwire - https://www.rfc-editor.org/errata/rfc5549 + https://www.rfc-editor.org/errata/rfc5549/ 10.17487/RFC5549 @@ -180458,7 +180458,7 @@ IETF rai mediactrl - https://www.rfc-editor.org/errata/rfc5552 + https://www.rfc-editor.org/errata/rfc5552/ 10.17487/RFC5552 @@ -180564,7 +180564,7 @@ IETF int mext - https://www.rfc-editor.org/errata/rfc5555 + https://www.rfc-editor.org/errata/rfc5555/ 10.17487/RFC5555 @@ -180596,7 +180596,7 @@ IETF int trill - https://www.rfc-editor.org/errata/rfc5556 + https://www.rfc-editor.org/errata/rfc5556/ 10.17487/RFC5556 @@ -180639,7 +180639,7 @@ IETF rtg pce - https://www.rfc-editor.org/errata/rfc5557 + https://www.rfc-editor.org/errata/rfc5557/ 10.17487/RFC5557 @@ -180706,7 +180706,7 @@ IETF tsv pcn - https://www.rfc-editor.org/errata/rfc5559 + https://www.rfc-editor.org/errata/rfc5559/ 10.17487/RFC5559 @@ -181018,7 +181018,7 @@ IETF int mipshop - https://www.rfc-editor.org/errata/rfc5568 + https://www.rfc-editor.org/errata/rfc5568/ 10.17487/RFC5568 @@ -181049,7 +181049,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc5569 + https://www.rfc-editor.org/errata/rfc5569/ 10.17487/RFC5569 @@ -181084,7 +181084,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5570 + https://www.rfc-editor.org/errata/rfc5570/ 10.17487/RFC5570 @@ -181167,7 +181167,7 @@ EXPERIMENTAL EXPERIMENTAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc5572 + https://www.rfc-editor.org/errata/rfc5572/ 10.17487/RFC5572 @@ -181289,7 +181289,7 @@ IETF rtg idr - https://www.rfc-editor.org/errata/rfc5575 + https://www.rfc-editor.org/errata/rfc5575/ 10.17487/RFC5575 @@ -181330,7 +181330,7 @@ IETF rai mmusic - https://www.rfc-editor.org/errata/rfc5576 + https://www.rfc-editor.org/errata/rfc5576/ 10.17487/RFC5576 @@ -181365,7 +181365,7 @@ IETF rai avt - https://www.rfc-editor.org/errata/rfc5577 + https://www.rfc-editor.org/errata/rfc5577/ 10.17487/RFC5577 @@ -181408,7 +181408,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc5578 + https://www.rfc-editor.org/errata/rfc5578/ 10.17487/RFC5578 @@ -181484,7 +181484,7 @@ IETF rai geopriv - https://www.rfc-editor.org/errata/rfc5580 + https://www.rfc-editor.org/errata/rfc5580/ 10.17487/RFC5580 @@ -181551,7 +181551,7 @@ IETF rai ecrit - https://www.rfc-editor.org/errata/rfc5582 + https://www.rfc-editor.org/errata/rfc5582/ 10.17487/RFC5582 @@ -181584,7 +181584,7 @@ IETF rai mmusic - https://www.rfc-editor.org/errata/rfc5583 + https://www.rfc-editor.org/errata/rfc5583/ 10.17487/RFC5583 @@ -181629,7 +181629,7 @@ IETF rai avt - https://www.rfc-editor.org/errata/rfc5584 + https://www.rfc-editor.org/errata/rfc5584/ 10.17487/RFC5584 @@ -181719,7 +181719,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc5586 + https://www.rfc-editor.org/errata/rfc5586/ 10.17487/RFC5586 @@ -181825,7 +181825,7 @@ BEST CURRENT PRACTICE IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5589 + https://www.rfc-editor.org/errata/rfc5589/ 10.17487/RFC5589 @@ -182034,7 +182034,7 @@ IETF tsv dccp - https://www.rfc-editor.org/errata/rfc5595 + https://www.rfc-editor.org/errata/rfc5595/ 10.17487/RFC5595 @@ -182156,7 +182156,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5598 + https://www.rfc-editor.org/errata/rfc5598/ 10.17487/RFC5598 @@ -182197,7 +182197,7 @@ IETF int pwe3 - https://www.rfc-editor.org/errata/rfc5601 + https://www.rfc-editor.org/errata/rfc5601/ 10.17487/RFC5601 @@ -182431,7 +182431,7 @@ IETF sec isms - https://www.rfc-editor.org/errata/rfc5608 + https://www.rfc-editor.org/errata/rfc5608/ 10.17487/RFC5608 @@ -182507,7 +182507,7 @@ IETF ops ipfix - https://www.rfc-editor.org/errata/rfc5610 + https://www.rfc-editor.org/errata/rfc5610/ 10.17487/RFC5610 @@ -182725,7 +182725,7 @@ IETF app lemonade - https://www.rfc-editor.org/errata/rfc5616 + https://www.rfc-editor.org/errata/rfc5616/ 10.17487/RFC5616 @@ -182798,7 +182798,7 @@ IETF sec dkim - https://www.rfc-editor.org/errata/rfc5617 + https://www.rfc-editor.org/errata/rfc5617/ 10.17487/RFC5617 @@ -183019,7 +183019,7 @@ IETF rtg pce - https://www.rfc-editor.org/errata/rfc5623 + https://www.rfc-editor.org/errata/rfc5623/ 10.17487/RFC5623 @@ -183157,7 +183157,7 @@ IETF rai sip - https://www.rfc-editor.org/errata/rfc5627 + https://www.rfc-editor.org/errata/rfc5627/ 10.17487/RFC5627 @@ -183185,7 +183185,7 @@ IETF rai sipping - https://www.rfc-editor.org/errata/rfc5628 + https://www.rfc-editor.org/errata/rfc5628/ 10.17487/RFC5628 @@ -183329,7 +183329,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5632 + https://www.rfc-editor.org/errata/rfc5632/ 10.17487/RFC5632 @@ -183472,7 +183472,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc5636 + https://www.rfc-editor.org/errata/rfc5636/ 10.17487/RFC5636 @@ -183577,7 +183577,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc5639 + https://www.rfc-editor.org/errata/rfc5639/ 10.17487/RFC5639 @@ -183733,7 +183733,7 @@ IETF rtg ospf - https://www.rfc-editor.org/errata/rfc5643 + https://www.rfc-editor.org/errata/rfc5643/ 10.17487/RFC5643 @@ -183774,7 +183774,7 @@ IETF ops ippm - https://www.rfc-editor.org/errata/rfc5644 + https://www.rfc-editor.org/errata/rfc5644/ 10.17487/RFC5644 @@ -183845,7 +183845,7 @@ IETF app ltru - https://www.rfc-editor.org/errata/rfc5646 + https://www.rfc-editor.org/errata/rfc5646/ 10.17487/RFC5646 @@ -183918,7 +183918,7 @@ IETF int mext - https://www.rfc-editor.org/errata/rfc5648 + https://www.rfc-editor.org/errata/rfc5648/ 10.17487/RFC5648 @@ -183945,7 +183945,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5649 + https://www.rfc-editor.org/errata/rfc5649/ 10.17487/RFC5649 @@ -184021,7 +184021,7 @@ IETF tsv rmt - https://www.rfc-editor.org/errata/rfc5651 + https://www.rfc-editor.org/errata/rfc5651/ 10.17487/RFC5651 @@ -184060,7 +184060,7 @@ IETF sec smime - https://www.rfc-editor.org/errata/rfc5652 + https://www.rfc-editor.org/errata/rfc5652/ 10.17487/RFC5652 @@ -184144,7 +184144,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc5654 + https://www.rfc-editor.org/errata/rfc5654/ 10.17487/RFC5654 @@ -184187,7 +184187,7 @@ IETF ops ipfix - https://www.rfc-editor.org/errata/rfc5655 + https://www.rfc-editor.org/errata/rfc5655/ 10.17487/RFC5655 @@ -184218,7 +184218,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5656 + https://www.rfc-editor.org/errata/rfc5656/ 10.17487/RFC5656 @@ -184261,7 +184261,7 @@ BEST CURRENT PRACTICE IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5657 + https://www.rfc-editor.org/errata/rfc5657/ 10.17487/RFC5657 @@ -184330,7 +184330,7 @@ IETF int pwe3 - https://www.rfc-editor.org/errata/rfc5659 + https://www.rfc-editor.org/errata/rfc5659/ 10.17487/RFC5659 @@ -184360,7 +184360,7 @@ IETF sec btns - https://www.rfc-editor.org/errata/rfc5660 + https://www.rfc-editor.org/errata/rfc5660/ 10.17487/RFC5660 @@ -184417,7 +184417,7 @@ IETF wit nfsv4 - https://www.rfc-editor.org/errata/rfc5661 + https://www.rfc-editor.org/errata/rfc5661/ 10.17487/RFC5661 @@ -184455,7 +184455,7 @@ IETF wit nfsv4 - https://www.rfc-editor.org/errata/rfc5662 + https://www.rfc-editor.org/errata/rfc5662/ 10.17487/RFC5662 @@ -184493,7 +184493,7 @@ IETF wit nfsv4 - https://www.rfc-editor.org/errata/rfc5663 + https://www.rfc-editor.org/errata/rfc5663/ 10.17487/RFC5663 @@ -184528,7 +184528,7 @@ IETF wit nfsv4 - https://www.rfc-editor.org/errata/rfc5664 + https://www.rfc-editor.org/errata/rfc5664/ 10.17487/RFC5664 @@ -184564,7 +184564,7 @@ IETF wit nfsv4 - https://www.rfc-editor.org/errata/rfc5665 + https://www.rfc-editor.org/errata/rfc5665/ 10.17487/RFC5665 @@ -184747,7 +184747,7 @@ IETF tsv pcn - https://www.rfc-editor.org/errata/rfc5670 + https://www.rfc-editor.org/errata/rfc5670/ 10.17487/RFC5670 @@ -184965,7 +184965,7 @@ IETF ops opsawg - https://www.rfc-editor.org/errata/rfc5676 + https://www.rfc-editor.org/errata/rfc5676/ 10.17487/RFC5676 @@ -185009,7 +185009,7 @@ IETF int mipshop - https://www.rfc-editor.org/errata/rfc5677 + https://www.rfc-editor.org/errata/rfc5677/ 10.17487/RFC5677 @@ -185148,7 +185148,7 @@ IETF wit tcpm - https://www.rfc-editor.org/errata/rfc5681 + https://www.rfc-editor.org/errata/rfc5681/ 10.17487/RFC5681 @@ -185221,7 +185221,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc5683 + https://www.rfc-editor.org/errata/rfc5683/ 10.17487/RFC5683 @@ -185250,7 +185250,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc5684 + https://www.rfc-editor.org/errata/rfc5684/ 10.17487/RFC5684 @@ -185380,7 +185380,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5688 + https://www.rfc-editor.org/errata/rfc5688/ 10.17487/RFC5688 @@ -185588,7 +185588,7 @@ INFORMATIONAL INFORMATIONAL IAB - https://www.rfc-editor.org/errata/rfc5694 + https://www.rfc-editor.org/errata/rfc5694/ 10.17487/RFC5694 @@ -185623,7 +185623,7 @@ IETF ops bmwg - https://www.rfc-editor.org/errata/rfc5695 + https://www.rfc-editor.org/errata/rfc5695/ 10.17487/RFC5695 @@ -185665,7 +185665,7 @@ IETF tsv pcn - https://www.rfc-editor.org/errata/rfc5696 + https://www.rfc-editor.org/errata/rfc5696/ 10.17487/RFC5696 @@ -185730,7 +185730,7 @@ IETF sec ltans - https://www.rfc-editor.org/errata/rfc5698 + https://www.rfc-editor.org/errata/rfc5698/ 10.17487/RFC5698 @@ -185801,7 +185801,7 @@ IETF int dnsext - https://www.rfc-editor.org/errata/rfc5702 + https://www.rfc-editor.org/errata/rfc5702/ 10.17487/RFC5702 @@ -185835,7 +185835,7 @@ IETF app sieve - https://www.rfc-editor.org/errata/rfc5703 + https://www.rfc-editor.org/errata/rfc5703/ 10.17487/RFC5703 @@ -185904,7 +185904,7 @@ IETF sec tls - https://www.rfc-editor.org/errata/rfc5705 + https://www.rfc-editor.org/errata/rfc5705/ 10.17487/RFC5705 @@ -185961,7 +185961,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc5707 + https://www.rfc-editor.org/errata/rfc5707/ 10.17487/RFC5707 @@ -185984,7 +185984,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc5708 + https://www.rfc-editor.org/errata/rfc5708/ 10.17487/RFC5708 @@ -186039,7 +186039,7 @@ IETF rtg ospf - https://www.rfc-editor.org/errata/rfc5709 + https://www.rfc-editor.org/errata/rfc5709/ 10.17487/RFC5709 @@ -186330,7 +186330,7 @@ IETF ops netconf - https://www.rfc-editor.org/errata/rfc5717 + https://www.rfc-editor.org/errata/rfc5717/ 10.17487/RFC5717 @@ -186500,7 +186500,7 @@ IETF int 6man - https://www.rfc-editor.org/errata/rfc5722 + https://www.rfc-editor.org/errata/rfc5722/ 10.17487/RFC5722 @@ -186570,7 +186570,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5724 + https://www.rfc-editor.org/errata/rfc5724/ 10.17487/RFC5724 @@ -186606,7 +186606,7 @@ IETF rai avt - https://www.rfc-editor.org/errata/rfc5725 + https://www.rfc-editor.org/errata/rfc5725/ 10.17487/RFC5725 @@ -186685,7 +186685,7 @@ BEST CURRENT PRACTICE IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5727 + https://www.rfc-editor.org/errata/rfc5727/ 10.17487/RFC5727 @@ -186723,7 +186723,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5728 + https://www.rfc-editor.org/errata/rfc5728/ 10.17487/RFC5728 @@ -186799,7 +186799,7 @@ INTERNET STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5730 + https://www.rfc-editor.org/errata/rfc5730/ 10.17487/RFC5730 @@ -186836,7 +186836,7 @@ INTERNET STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5731 + https://www.rfc-editor.org/errata/rfc5731/ 10.17487/RFC5731 @@ -186947,7 +186947,7 @@ INTERNET STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5734 + https://www.rfc-editor.org/errata/rfc5734/ 10.17487/RFC5734 @@ -186987,7 +186987,7 @@ BEST CURRENT PRACTICE IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5735 + https://www.rfc-editor.org/errata/rfc5735/ 10.17487/RFC5735 @@ -187093,7 +187093,7 @@ IETF app eai - https://www.rfc-editor.org/errata/rfc5738 + https://www.rfc-editor.org/errata/rfc5738/ 10.17487/RFC5738 @@ -187129,7 +187129,7 @@ IETF sec ipsecme - https://www.rfc-editor.org/errata/rfc5739 + https://www.rfc-editor.org/errata/rfc5739/ 10.17487/RFC5739 @@ -187175,7 +187175,7 @@ IETF tsv rmt - https://www.rfc-editor.org/errata/rfc5740 + https://www.rfc-editor.org/errata/rfc5740/ 10.17487/RFC5740 @@ -187213,7 +187213,7 @@ INFORMATIONAL INFORMATIONAL IAB - https://www.rfc-editor.org/errata/rfc5741 + https://www.rfc-editor.org/errata/rfc5741/ 10.17487/RFC5741 @@ -187461,7 +187461,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5748 + https://www.rfc-editor.org/errata/rfc5748/ 10.17487/RFC5748 @@ -187502,7 +187502,7 @@ IETF sec hokey - https://www.rfc-editor.org/errata/rfc5749 + https://www.rfc-editor.org/errata/rfc5749/ 10.17487/RFC5749 @@ -187586,7 +187586,7 @@ IETF sec smime - https://www.rfc-editor.org/errata/rfc5751 + https://www.rfc-editor.org/errata/rfc5751/ 10.17487/RFC5751 @@ -187620,7 +187620,7 @@ IETF sec smime - https://www.rfc-editor.org/errata/rfc5752 + https://www.rfc-editor.org/errata/rfc5752/ 10.17487/RFC5752 @@ -187656,7 +187656,7 @@ IETF sec smime - https://www.rfc-editor.org/errata/rfc5753 + https://www.rfc-editor.org/errata/rfc5753/ 10.17487/RFC5753 @@ -187700,7 +187700,7 @@ IETF sec smime - https://www.rfc-editor.org/errata/rfc5754 + https://www.rfc-editor.org/errata/rfc5754/ 10.17487/RFC5754 @@ -187740,7 +187740,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc5755 + https://www.rfc-editor.org/errata/rfc5755/ 10.17487/RFC5755 @@ -187785,7 +187785,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc5756 + https://www.rfc-editor.org/errata/rfc5756/ 10.17487/RFC5756 @@ -187870,7 +187870,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc5758 + https://www.rfc-editor.org/errata/rfc5758/ 10.17487/RFC5758 @@ -187939,7 +187939,7 @@ IETF rai avt - https://www.rfc-editor.org/errata/rfc5760 + https://www.rfc-editor.org/errata/rfc5760/ 10.17487/RFC5760 @@ -187975,7 +187975,7 @@ IETF rai avt - https://www.rfc-editor.org/errata/rfc5761 + https://www.rfc-editor.org/errata/rfc5761/ 10.17487/RFC5761 @@ -188045,7 +188045,7 @@ IETF rai sip - https://www.rfc-editor.org/errata/rfc5763 + https://www.rfc-editor.org/errata/rfc5763/ 10.17487/RFC5763 @@ -188081,7 +188081,7 @@ IETF rai avt - https://www.rfc-editor.org/errata/rfc5764 + https://www.rfc-editor.org/errata/rfc5764/ 10.17487/RFC5764 @@ -188116,7 +188116,7 @@ INFORMATIONAL INFORMATIONAL IRTF - https://www.rfc-editor.org/errata/rfc5765 + https://www.rfc-editor.org/errata/rfc5765/ 10.17487/RFC5765 @@ -188160,7 +188160,7 @@ IETF tsv behave - https://www.rfc-editor.org/errata/rfc5766 + https://www.rfc-editor.org/errata/rfc5766/ 10.17487/RFC5766 @@ -188255,7 +188255,7 @@ IETF tsv behave - https://www.rfc-editor.org/errata/rfc5769 + https://www.rfc-editor.org/errata/rfc5769/ 10.17487/RFC5769 @@ -188345,7 +188345,7 @@ IETF ops mboned - https://www.rfc-editor.org/errata/rfc5771 + https://www.rfc-editor.org/errata/rfc5771/ 10.17487/RFC5771 @@ -188414,7 +188414,7 @@ HISTORIC HISTORIC IRTF - https://www.rfc-editor.org/errata/rfc5773 + https://www.rfc-editor.org/errata/rfc5773/ 10.17487/RFC5773 @@ -188450,7 +188450,7 @@ IETF rai geopriv - https://www.rfc-editor.org/errata/rfc5774 + https://www.rfc-editor.org/errata/rfc5774/ 10.17487/RFC5774 @@ -188532,7 +188532,7 @@ IETF sec msec - https://www.rfc-editor.org/errata/rfc5776 + https://www.rfc-editor.org/errata/rfc5776/ 10.17487/RFC5776 @@ -188577,7 +188577,7 @@ IETF ops dime - https://www.rfc-editor.org/errata/rfc5777 + https://www.rfc-editor.org/errata/rfc5777/ 10.17487/RFC5777 @@ -188617,7 +188617,7 @@ IETF ops dime - https://www.rfc-editor.org/errata/rfc5778 + https://www.rfc-editor.org/errata/rfc5778/ 10.17487/RFC5778 @@ -188694,7 +188694,7 @@ IETF tsv behave - https://www.rfc-editor.org/errata/rfc5780 + https://www.rfc-editor.org/errata/rfc5780/ 10.17487/RFC5780 @@ -188757,7 +188757,7 @@ INFORMATIONAL INFORMATIONAL IRTF - https://www.rfc-editor.org/errata/rfc5782 + https://www.rfc-editor.org/errata/rfc5782/ 10.17487/RFC5782 @@ -188783,7 +188783,7 @@ INFORMATIONAL INFORMATIONAL IRTF - https://www.rfc-editor.org/errata/rfc5783 + https://www.rfc-editor.org/errata/rfc5783/ 10.17487/RFC5783 @@ -188816,7 +188816,7 @@ IETF app sieve - https://www.rfc-editor.org/errata/rfc5784 + https://www.rfc-editor.org/errata/rfc5784/ 10.17487/RFC5784 @@ -188853,7 +188853,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5785 + https://www.rfc-editor.org/errata/rfc5785/ 10.17487/RFC5785 @@ -188890,7 +188890,7 @@ IETF rtg ospf - https://www.rfc-editor.org/errata/rfc5786 + https://www.rfc-editor.org/errata/rfc5786/ 10.17487/RFC5786 @@ -188989,7 +188989,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5789 + https://www.rfc-editor.org/errata/rfc5789/ 10.17487/RFC5789 @@ -189062,7 +189062,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5791 + https://www.rfc-editor.org/errata/rfc5791/ 10.17487/RFC5791 @@ -189092,7 +189092,7 @@ IETF sec nea - https://www.rfc-editor.org/errata/rfc5792 + https://www.rfc-editor.org/errata/rfc5792/ 10.17487/RFC5792 @@ -189130,7 +189130,7 @@ IETF sec nea - https://www.rfc-editor.org/errata/rfc5793 + https://www.rfc-editor.org/errata/rfc5793/ 10.17487/RFC5793 @@ -189171,7 +189171,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc5794 + https://www.rfc-editor.org/errata/rfc5794/ 10.17487/RFC5794 @@ -189207,7 +189207,7 @@ IETF tsv rohc - https://www.rfc-editor.org/errata/rfc5795 + https://www.rfc-editor.org/errata/rfc5795/ 10.17487/RFC5795 @@ -189282,7 +189282,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5797 + https://www.rfc-editor.org/errata/rfc5797/ 10.17487/RFC5797 @@ -189314,7 +189314,7 @@ IETF rtg vrrp - https://www.rfc-editor.org/errata/rfc5798 + https://www.rfc-editor.org/errata/rfc5798/ 10.17487/RFC5798 @@ -189351,7 +189351,7 @@ IETF sec sasl - https://www.rfc-editor.org/errata/rfc5801 + https://www.rfc-editor.org/errata/rfc5801/ 10.17487/RFC5801 @@ -189392,7 +189392,7 @@ IETF sec sasl - https://www.rfc-editor.org/errata/rfc5802 + https://www.rfc-editor.org/errata/rfc5802/ 10.17487/RFC5802 @@ -189421,7 +189421,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5803 + https://www.rfc-editor.org/errata/rfc5803/ 10.17487/RFC5803 @@ -189457,7 +189457,7 @@ IETF app sieve - https://www.rfc-editor.org/errata/rfc5804 + https://www.rfc-editor.org/errata/rfc5804/ 10.17487/RFC5804 @@ -189484,7 +189484,7 @@ EXPERIMENTAL EXPERIMENTAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc5805 + https://www.rfc-editor.org/errata/rfc5805/ 10.17487/RFC5805 @@ -189511,7 +189511,7 @@ HISTORIC HISTORIC INDEPENDENT - https://www.rfc-editor.org/errata/rfc5806 + https://www.rfc-editor.org/errata/rfc5806/ 10.17487/RFC5806 @@ -189633,7 +189633,7 @@ IETF rtg forces - https://www.rfc-editor.org/errata/rfc5810 + https://www.rfc-editor.org/errata/rfc5810/ 10.17487/RFC5810 @@ -189700,7 +189700,7 @@ IETF rtg forces - https://www.rfc-editor.org/errata/rfc5812 + https://www.rfc-editor.org/errata/rfc5812/ 10.17487/RFC5812 @@ -189812,7 +189812,7 @@ IETF ops ipfix - https://www.rfc-editor.org/errata/rfc5815 + https://www.rfc-editor.org/errata/rfc5815/ 10.17487/RFC5815 @@ -189885,7 +189885,7 @@ IETF rtg ccamp - https://www.rfc-editor.org/errata/rfc5817 + https://www.rfc-editor.org/errata/rfc5817/ 10.17487/RFC5817 @@ -189959,7 +189959,7 @@ IETF app morg - https://www.rfc-editor.org/errata/rfc5819 + https://www.rfc-editor.org/errata/rfc5819/ 10.17487/RFC5819 @@ -190114,7 +190114,7 @@ IETF rtg roll - https://www.rfc-editor.org/errata/rfc5826 + https://www.rfc-editor.org/errata/rfc5826/ 10.17487/RFC5826 @@ -190251,7 +190251,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc5830 + https://www.rfc-editor.org/errata/rfc5830/ 10.17487/RFC5830 @@ -190283,7 +190283,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc5831 + https://www.rfc-editor.org/errata/rfc5831/ 10.17487/RFC5831 @@ -190316,7 +190316,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc5832 + https://www.rfc-editor.org/errata/rfc5832/ 10.17487/RFC5832 @@ -190552,7 +190552,7 @@ IETF rtg ospf - https://www.rfc-editor.org/errata/rfc5838 + https://www.rfc-editor.org/errata/rfc5838/ 10.17487/RFC5838 @@ -190645,7 +190645,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc5841 + https://www.rfc-editor.org/errata/rfc5841/ 10.17487/RFC5841 @@ -190713,7 +190713,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5843 + https://www.rfc-editor.org/errata/rfc5843/ 10.17487/RFC5843 @@ -190885,7 +190885,7 @@ IETF int netlmm - https://www.rfc-editor.org/errata/rfc5847 + https://www.rfc-editor.org/errata/rfc5847/ 10.17487/RFC5847 @@ -190951,7 +190951,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5849 + https://www.rfc-editor.org/errata/rfc5849/ 10.17487/RFC5849 @@ -191001,7 +191001,7 @@ IETF rai sipping - https://www.rfc-editor.org/errata/rfc5850 + https://www.rfc-editor.org/errata/rfc5850/ 10.17487/RFC5850 @@ -191280,7 +191280,7 @@ IETF tsv rohc - https://www.rfc-editor.org/errata/rfc5857 + https://www.rfc-editor.org/errata/rfc5857/ 10.17487/RFC5857 @@ -191315,7 +191315,7 @@ IETF tsv rohc - https://www.rfc-editor.org/errata/rfc5858 + https://www.rfc-editor.org/errata/rfc5858/ 10.17487/RFC5858 @@ -191401,7 +191401,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc5861 + https://www.rfc-editor.org/errata/rfc5861/ 10.17487/RFC5861 @@ -191507,7 +191507,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5864 + https://www.rfc-editor.org/errata/rfc5864/ 10.17487/RFC5864 @@ -191545,7 +191545,7 @@ IETF wit tsvwg - https://www.rfc-editor.org/errata/rfc5865 + https://www.rfc-editor.org/errata/rfc5865/ 10.17487/RFC5865 @@ -191688,7 +191688,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5869 + https://www.rfc-editor.org/errata/rfc5869/ 10.17487/RFC5869 @@ -191722,7 +191722,7 @@ IETF rai geopriv - https://www.rfc-editor.org/errata/rfc5870 + https://www.rfc-editor.org/errata/rfc5870/ 10.17487/RFC5870 @@ -191933,7 +191933,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc5877 + https://www.rfc-editor.org/errata/rfc5877/ 10.17487/RFC5877 @@ -191970,7 +191970,7 @@ EXPERIMENTAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5878 + https://www.rfc-editor.org/errata/rfc5878/ 10.17487/RFC5878 @@ -192038,7 +192038,7 @@ IETF rtg bfd - https://www.rfc-editor.org/errata/rfc5880 + https://www.rfc-editor.org/errata/rfc5880/ 10.17487/RFC5880 @@ -192068,7 +192068,7 @@ IETF rtg bfd - https://www.rfc-editor.org/errata/rfc5881 + https://www.rfc-editor.org/errata/rfc5881/ 10.17487/RFC5881 @@ -192098,7 +192098,7 @@ IETF rtg bfd - https://www.rfc-editor.org/errata/rfc5882 + https://www.rfc-editor.org/errata/rfc5882/ 10.17487/RFC5882 @@ -192171,7 +192171,7 @@ IETF rtg bfd - https://www.rfc-editor.org/errata/rfc5884 + https://www.rfc-editor.org/errata/rfc5884/ 10.17487/RFC5884 @@ -192311,7 +192311,7 @@ IETF rai mmusic - https://www.rfc-editor.org/errata/rfc5888 + https://www.rfc-editor.org/errata/rfc5888/ 10.17487/RFC5888 @@ -192387,7 +192387,7 @@ IETF app idnabis - https://www.rfc-editor.org/errata/rfc5890 + https://www.rfc-editor.org/errata/rfc5890/ 10.17487/RFC5890 @@ -192426,7 +192426,7 @@ IETF app idnabis - https://www.rfc-editor.org/errata/rfc5891 + https://www.rfc-editor.org/errata/rfc5891/ 10.17487/RFC5891 @@ -192462,7 +192462,7 @@ IETF app idnabis - https://www.rfc-editor.org/errata/rfc5892 + https://www.rfc-editor.org/errata/rfc5892/ 10.17487/RFC5892 @@ -192594,7 +192594,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5896 + https://www.rfc-editor.org/errata/rfc5896/ 10.17487/RFC5896 @@ -192770,7 +192770,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5903 + https://www.rfc-editor.org/errata/rfc5903/ 10.17487/RFC5903 @@ -192848,7 +192848,7 @@ IETF int ntp - https://www.rfc-editor.org/errata/rfc5905 + https://www.rfc-editor.org/errata/rfc5905/ 10.17487/RFC5905 @@ -192882,7 +192882,7 @@ IETF int ntp - https://www.rfc-editor.org/errata/rfc5906 + https://www.rfc-editor.org/errata/rfc5906/ 10.17487/RFC5906 @@ -192916,7 +192916,7 @@ IETF int ntp - https://www.rfc-editor.org/errata/rfc5907 + https://www.rfc-editor.org/errata/rfc5907/ 10.17487/RFC5907 @@ -192947,7 +192947,7 @@ IETF int ntp - https://www.rfc-editor.org/errata/rfc5908 + https://www.rfc-editor.org/errata/rfc5908/ 10.17487/RFC5908 @@ -193021,7 +193021,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5910 + https://www.rfc-editor.org/errata/rfc5910/ 10.17487/RFC5910 @@ -193057,7 +193057,7 @@ IETF sec smime - https://www.rfc-editor.org/errata/rfc5911 + https://www.rfc-editor.org/errata/rfc5911/ 10.17487/RFC5911 @@ -193094,7 +193094,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc5912 + https://www.rfc-editor.org/errata/rfc5912/ 10.17487/RFC5912 @@ -193125,7 +193125,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc5913 + https://www.rfc-editor.org/errata/rfc5913/ 10.17487/RFC5913 @@ -193159,7 +193159,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc5914 + https://www.rfc-editor.org/errata/rfc5914/ 10.17487/RFC5914 @@ -193191,7 +193191,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5915 + https://www.rfc-editor.org/errata/rfc5915/ 10.17487/RFC5915 @@ -193238,7 +193238,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5917 + https://www.rfc-editor.org/errata/rfc5917/ 10.17487/RFC5917 @@ -193277,7 +193277,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc5918 + https://www.rfc-editor.org/errata/rfc5918/ 10.17487/RFC5918 @@ -193316,7 +193316,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc5919 + https://www.rfc-editor.org/errata/rfc5919/ 10.17487/RFC5919 @@ -193472,7 +193472,7 @@ IETF rai sip - https://www.rfc-editor.org/errata/rfc5923 + https://www.rfc-editor.org/errata/rfc5923/ 10.17487/RFC5923 @@ -193547,7 +193547,7 @@ IETF wit tcpm - https://www.rfc-editor.org/errata/rfc5925 + https://www.rfc-editor.org/errata/rfc5925/ 10.17487/RFC5925 @@ -193578,7 +193578,7 @@ IETF wit tcpm - https://www.rfc-editor.org/errata/rfc5926 + https://www.rfc-editor.org/errata/rfc5926/ 10.17487/RFC5926 @@ -193755,7 +193755,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5931 + https://www.rfc-editor.org/errata/rfc5931/ 10.17487/RFC5931 @@ -193869,7 +193869,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc5934 + https://www.rfc-editor.org/errata/rfc5934/ 10.17487/RFC5934 @@ -193900,7 +193900,7 @@ IETF ops opsawg - https://www.rfc-editor.org/errata/rfc5935 + https://www.rfc-editor.org/errata/rfc5935/ 10.17487/RFC5935 @@ -194001,7 +194001,7 @@ IETF ops ippm - https://www.rfc-editor.org/errata/rfc5938 + https://www.rfc-editor.org/errata/rfc5938/ 10.17487/RFC5938 @@ -194034,7 +194034,7 @@ IETF rai mmusic - https://www.rfc-editor.org/errata/rfc5939 + https://www.rfc-editor.org/errata/rfc5939/ 10.17487/RFC5939 @@ -194067,7 +194067,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5940 + https://www.rfc-editor.org/errata/rfc5940/ 10.17487/RFC5940 @@ -194140,7 +194140,7 @@ IETF int 6man - https://www.rfc-editor.org/errata/rfc5942 + https://www.rfc-editor.org/errata/rfc5942/ 10.17487/RFC5942 @@ -194200,7 +194200,7 @@ IETF int mip4 - https://www.rfc-editor.org/errata/rfc5944 + https://www.rfc-editor.org/errata/rfc5944/ 10.17487/RFC5944 @@ -194457,7 +194457,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc5951 + https://www.rfc-editor.org/errata/rfc5951/ 10.17487/RFC5951 @@ -194493,7 +194493,7 @@ IETF int 6man - https://www.rfc-editor.org/errata/rfc5952 + https://www.rfc-editor.org/errata/rfc5952/ 10.17487/RFC5952 @@ -194531,7 +194531,7 @@ IETF sec isms - https://www.rfc-editor.org/errata/rfc5953 + https://www.rfc-editor.org/errata/rfc5953/ 10.17487/RFC5953 @@ -194576,7 +194576,7 @@ IETF rai sip - https://www.rfc-editor.org/errata/rfc5954 + https://www.rfc-editor.org/errata/rfc5954/ 10.17487/RFC5954 @@ -194703,7 +194703,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5958 + https://www.rfc-editor.org/errata/rfc5958/ 10.17487/RFC5958 @@ -194778,7 +194778,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc5960 + https://www.rfc-editor.org/errata/rfc5960/ 10.17487/RFC5960 @@ -194824,7 +194824,7 @@ IETF wit tcpm - https://www.rfc-editor.org/errata/rfc5961 + https://www.rfc-editor.org/errata/rfc5961/ 10.17487/RFC5961 @@ -194961,7 +194961,7 @@ IETF app marf - https://www.rfc-editor.org/errata/rfc5965 + https://www.rfc-editor.org/errata/rfc5965/ 10.17487/RFC5965 @@ -195087,7 +195087,7 @@ IETF int softwire - https://www.rfc-editor.org/errata/rfc5969 + https://www.rfc-editor.org/errata/rfc5969/ 10.17487/RFC5969 @@ -195545,7 +195545,7 @@ IETF tsv nsis - https://www.rfc-editor.org/errata/rfc5981 + https://www.rfc-editor.org/errata/rfc5981/ 10.17487/RFC5981 @@ -195631,7 +195631,7 @@ EXPERIMENTAL EXPERIMENTAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc5984 + https://www.rfc-editor.org/errata/rfc5984/ 10.17487/RFC5984 @@ -195695,7 +195695,7 @@ IETF rai geopriv - https://www.rfc-editor.org/errata/rfc5986 + https://www.rfc-editor.org/errata/rfc5986/ 10.17487/RFC5986 @@ -195763,7 +195763,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc5988 + https://www.rfc-editor.org/errata/rfc5988/ 10.17487/RFC5988 @@ -195829,7 +195829,7 @@ IETF sec smime - https://www.rfc-editor.org/errata/rfc5990 + https://www.rfc-editor.org/errata/rfc5990/ 10.17487/RFC5990 @@ -195991,7 +195991,7 @@ IETF int pwe3 - https://www.rfc-editor.org/errata/rfc5994 + https://www.rfc-editor.org/errata/rfc5994/ 10.17487/RFC5994 @@ -196070,7 +196070,7 @@ IETF sec ipsecme - https://www.rfc-editor.org/errata/rfc5996 + https://www.rfc-editor.org/errata/rfc5996/ 10.17487/RFC5996 @@ -196101,7 +196101,7 @@ IETF sec radext - https://www.rfc-editor.org/errata/rfc5997 + https://www.rfc-editor.org/errata/rfc5997/ 10.17487/RFC5997 @@ -196266,7 +196266,7 @@ IETF rtg ccamp - https://www.rfc-editor.org/errata/rfc6003 + https://www.rfc-editor.org/errata/rfc6003/ 10.17487/RFC6003 @@ -196381,7 +196381,7 @@ IETF rtg pce - https://www.rfc-editor.org/errata/rfc6006 + https://www.rfc-editor.org/errata/rfc6006/ 10.17487/RFC6006 @@ -196469,7 +196469,7 @@ IETF app sieve - https://www.rfc-editor.org/errata/rfc6009 + https://www.rfc-editor.org/errata/rfc6009/ 10.17487/RFC6009 @@ -196506,7 +196506,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6010 + https://www.rfc-editor.org/errata/rfc6010/ 10.17487/RFC6010 @@ -196539,7 +196539,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6011 + https://www.rfc-editor.org/errata/rfc6011/ 10.17487/RFC6011 @@ -196706,7 +196706,7 @@ IETF wit tsvwg - https://www.rfc-editor.org/errata/rfc6016 + https://www.rfc-editor.org/errata/rfc6016/ 10.17487/RFC6016 @@ -196828,7 +196828,7 @@ IETF ops netmod - https://www.rfc-editor.org/errata/rfc6020 + https://www.rfc-editor.org/errata/rfc6020/ 10.17487/RFC6020 @@ -196894,7 +196894,7 @@ IETF ops netconf - https://www.rfc-editor.org/errata/rfc6022 + https://www.rfc-editor.org/errata/rfc6022/ 10.17487/RFC6022 @@ -197025,7 +197025,7 @@ IETF rai sipcore - https://www.rfc-editor.org/errata/rfc6026 + https://www.rfc-editor.org/errata/rfc6026/ 10.17487/RFC6026 @@ -197129,7 +197129,7 @@ INFORMATIONAL INFORMATIONAL IRTF - https://www.rfc-editor.org/errata/rfc6029 + https://www.rfc-editor.org/errata/rfc6029/ 10.17487/RFC6029 @@ -197177,7 +197177,7 @@ IETF sec keyprov - https://www.rfc-editor.org/errata/rfc6030 + https://www.rfc-editor.org/errata/rfc6030/ 10.17487/RFC6030 @@ -197207,7 +197207,7 @@ IETF sec keyprov - https://www.rfc-editor.org/errata/rfc6031 + https://www.rfc-editor.org/errata/rfc6031/ 10.17487/RFC6031 @@ -197333,7 +197333,7 @@ IETF rai sipping - https://www.rfc-editor.org/errata/rfc6035 + https://www.rfc-editor.org/errata/rfc6035/ 10.17487/RFC6035 @@ -197367,7 +197367,7 @@ IETF ops v6ops - https://www.rfc-editor.org/errata/rfc6036 + https://www.rfc-editor.org/errata/rfc6036/ 10.17487/RFC6036 @@ -197436,7 +197436,7 @@ IETF ops ippm - https://www.rfc-editor.org/errata/rfc6038 + https://www.rfc-editor.org/errata/rfc6038/ 10.17487/RFC6038 @@ -197650,7 +197650,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc6044 + https://www.rfc-editor.org/errata/rfc6044/ 10.17487/RFC6044 @@ -197685,7 +197685,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6045 + https://www.rfc-editor.org/errata/rfc6045/ 10.17487/RFC6045 @@ -197759,7 +197759,7 @@ IETF app calsify - https://www.rfc-editor.org/errata/rfc6047 + https://www.rfc-editor.org/errata/rfc6047/ 10.17487/RFC6047 @@ -197943,7 +197943,7 @@ IETF tsv behave - https://www.rfc-editor.org/errata/rfc6052 + https://www.rfc-editor.org/errata/rfc6052/ 10.17487/RFC6052 @@ -198049,7 +198049,7 @@ INFORMATIONAL INFORMATIONAL IAB - https://www.rfc-editor.org/errata/rfc6055 + https://www.rfc-editor.org/errata/rfc6055/ 10.17487/RFC6055 @@ -198085,7 +198085,7 @@ IETF wit tsvwg - https://www.rfc-editor.org/errata/rfc6056 + https://www.rfc-editor.org/errata/rfc6056/ 10.17487/RFC6056 @@ -198304,7 +198304,7 @@ IETF tsv behave - https://www.rfc-editor.org/errata/rfc6062 + https://www.rfc-editor.org/errata/rfc6062/ 10.17487/RFC6062 @@ -198345,7 +198345,7 @@ IETF sec keyprov - https://www.rfc-editor.org/errata/rfc6063 + https://www.rfc-editor.org/errata/rfc6063/ 10.17487/RFC6063 @@ -198461,7 +198461,7 @@ IETF sec tls - https://www.rfc-editor.org/errata/rfc6066 + https://www.rfc-editor.org/errata/rfc6066/ 10.17487/RFC6066 @@ -198495,7 +198495,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6067 + https://www.rfc-editor.org/errata/rfc6067/ 10.17487/RFC6067 @@ -198534,7 +198534,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6068 + https://www.rfc-editor.org/errata/rfc6068/ 10.17487/RFC6068 @@ -198657,7 +198657,7 @@ IETF rai sip - https://www.rfc-editor.org/errata/rfc6072 + https://www.rfc-editor.org/errata/rfc6072/ 10.17487/RFC6072 @@ -198982,7 +198982,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6081 + https://www.rfc-editor.org/errata/rfc6081/ 10.17487/RFC6081 @@ -199062,7 +199062,7 @@ IETF wit tsvwg - https://www.rfc-editor.org/errata/rfc6083 + https://www.rfc-editor.org/errata/rfc6083/ 10.17487/RFC6083 @@ -199176,7 +199176,7 @@ IETF rai sipcore - https://www.rfc-editor.org/errata/rfc6086 + https://www.rfc-editor.org/errata/rfc6086/ 10.17487/RFC6086 @@ -199325,7 +199325,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6090 + https://www.rfc-editor.org/errata/rfc6090/ 10.17487/RFC6090 @@ -199390,7 +199390,7 @@ IETF ops v6ops - https://www.rfc-editor.org/errata/rfc6092 + https://www.rfc-editor.org/errata/rfc6092/ 10.17487/RFC6092 @@ -199429,7 +199429,7 @@ IETF wit tcpm - https://www.rfc-editor.org/errata/rfc6093 + https://www.rfc-editor.org/errata/rfc6093/ 10.17487/RFC6093 @@ -199765,7 +199765,7 @@ IETF int 6man - https://www.rfc-editor.org/errata/rfc6106 + https://www.rfc-editor.org/errata/rfc6106/ 10.17487/RFC6106 @@ -199805,7 +199805,7 @@ IETF rtg ccamp - https://www.rfc-editor.org/errata/rfc6107 + https://www.rfc-editor.org/errata/rfc6107/ 10.17487/RFC6107 @@ -199887,7 +199887,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6109 + https://www.rfc-editor.org/errata/rfc6109/ 10.17487/RFC6109 @@ -199923,7 +199923,7 @@ IETF ops netmod - https://www.rfc-editor.org/errata/rfc6110 + https://www.rfc-editor.org/errata/rfc6110/ 10.17487/RFC6110 @@ -199996,7 +199996,7 @@ IETF sec krb-wg - https://www.rfc-editor.org/errata/rfc6112 + https://www.rfc-editor.org/errata/rfc6112/ 10.17487/RFC6112 @@ -200277,7 +200277,7 @@ IETF rai xmpp - https://www.rfc-editor.org/errata/rfc6120 + https://www.rfc-editor.org/errata/rfc6120/ 10.17487/RFC6120 @@ -200315,7 +200315,7 @@ IETF rai xmpp - https://www.rfc-editor.org/errata/rfc6121 + https://www.rfc-editor.org/errata/rfc6121/ 10.17487/RFC6121 @@ -200355,7 +200355,7 @@ IETF rai xmpp - https://www.rfc-editor.org/errata/rfc6122 + https://www.rfc-editor.org/errata/rfc6122/ 10.17487/RFC6122 @@ -200450,7 +200450,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6125 + https://www.rfc-editor.org/errata/rfc6125/ 10.17487/RFC6125 @@ -200480,7 +200480,7 @@ EXPERIMENTAL EXPERIMENTAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc6126 + https://www.rfc-editor.org/errata/rfc6126/ 10.17487/RFC6126 @@ -200579,7 +200579,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6129 + https://www.rfc-editor.org/errata/rfc6129/ 10.17487/RFC6129 @@ -200627,7 +200627,7 @@ IETF rtg manet - https://www.rfc-editor.org/errata/rfc6130 + https://www.rfc-editor.org/errata/rfc6130/ 10.17487/RFC6130 @@ -200854,7 +200854,7 @@ EXPERIMENTAL EXPERIMENTAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc6137 + https://www.rfc-editor.org/errata/rfc6137/ 10.17487/RFC6137 @@ -200968,7 +200968,7 @@ IETF rai martini - https://www.rfc-editor.org/errata/rfc6140 + https://www.rfc-editor.org/errata/rfc6140/ 10.17487/RFC6140 @@ -201071,7 +201071,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6143 + https://www.rfc-editor.org/errata/rfc6143/ 10.17487/RFC6143 @@ -201159,7 +201159,7 @@ IETF tsv behave - https://www.rfc-editor.org/errata/rfc6145 + https://www.rfc-editor.org/errata/rfc6145/ 10.17487/RFC6145 @@ -201194,7 +201194,7 @@ IETF tsv behave - https://www.rfc-editor.org/errata/rfc6146 + https://www.rfc-editor.org/errata/rfc6146/ 10.17487/RFC6146 @@ -201231,7 +201231,7 @@ IETF tsv behave - https://www.rfc-editor.org/errata/rfc6147 + https://www.rfc-editor.org/errata/rfc6147/ 10.17487/RFC6147 @@ -201302,7 +201302,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6149 + https://www.rfc-editor.org/errata/rfc6149/ 10.17487/RFC6149 @@ -201338,7 +201338,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6150 + https://www.rfc-editor.org/errata/rfc6150/ 10.17487/RFC6150 @@ -201419,7 +201419,7 @@ IETF app yam - https://www.rfc-editor.org/errata/rfc6152 + https://www.rfc-editor.org/errata/rfc6152/ 10.17487/RFC6152 @@ -201480,7 +201480,7 @@ IETF app morg - https://www.rfc-editor.org/errata/rfc6154 + https://www.rfc-editor.org/errata/rfc6154/ 10.17487/RFC6154 @@ -201593,7 +201593,7 @@ IETF rai sipping - https://www.rfc-editor.org/errata/rfc6157 + https://www.rfc-editor.org/errata/rfc6157/ 10.17487/RFC6157 @@ -201834,7 +201834,7 @@ IETF int 6man - https://www.rfc-editor.org/errata/rfc6164 + https://www.rfc-editor.org/errata/rfc6164/ 10.17487/RFC6164 @@ -201934,7 +201934,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6167 + https://www.rfc-editor.org/errata/rfc6167/ 10.17487/RFC6167 @@ -202158,7 +202158,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6174 + https://www.rfc-editor.org/errata/rfc6174/ 10.17487/RFC6174 @@ -202223,7 +202223,7 @@ IETF sec tls - https://www.rfc-editor.org/errata/rfc6176 + https://www.rfc-editor.org/errata/rfc6176/ 10.17487/RFC6176 @@ -202408,7 +202408,7 @@ IETF tsv mptcp - https://www.rfc-editor.org/errata/rfc6181 + https://www.rfc-editor.org/errata/rfc6181/ 10.17487/RFC6181 @@ -202484,7 +202484,7 @@ IETF ops ipfix - https://www.rfc-editor.org/errata/rfc6183 + https://www.rfc-editor.org/errata/rfc6183/ 10.17487/RFC6183 @@ -202526,7 +202526,7 @@ IETF rai avt - https://www.rfc-editor.org/errata/rfc6184 + https://www.rfc-editor.org/errata/rfc6184/ 10.17487/RFC6184 @@ -202726,7 +202726,7 @@ IETF rai payload - https://www.rfc-editor.org/errata/rfc6190 + https://www.rfc-editor.org/errata/rfc6190/ 10.17487/RFC6190 @@ -202791,7 +202791,7 @@ IETF ops opsec - https://www.rfc-editor.org/errata/rfc6192 + https://www.rfc-editor.org/errata/rfc6192/ 10.17487/RFC6192 @@ -202858,7 +202858,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6194 + https://www.rfc-editor.org/errata/rfc6194/ 10.17487/RFC6194 @@ -202928,7 +202928,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6196 + https://www.rfc-editor.org/errata/rfc6196/ 10.17487/RFC6196 @@ -203160,7 +203160,7 @@ IETF ops v6ops - https://www.rfc-editor.org/errata/rfc6204 + https://www.rfc-editor.org/errata/rfc6204/ 10.17487/RFC6204 @@ -203375,7 +203375,7 @@ EXPERIMENTAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6210 + https://www.rfc-editor.org/errata/rfc6210/ 10.17487/RFC6210 @@ -203496,7 +203496,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc6214 + https://www.rfc-editor.org/errata/rfc6214/ 10.17487/RFC6214 @@ -203530,7 +203530,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc6215 + https://www.rfc-editor.org/errata/rfc6215/ 10.17487/RFC6215 @@ -203622,7 +203622,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc6218 + https://www.rfc-editor.org/errata/rfc6218/ 10.17487/RFC6218 @@ -203750,7 +203750,7 @@ IETF int dhc - https://www.rfc-editor.org/errata/rfc6221 + https://www.rfc-editor.org/errata/rfc6221/ 10.17487/RFC6221 @@ -203892,7 +203892,7 @@ IETF rai geopriv - https://www.rfc-editor.org/errata/rfc6225 + https://www.rfc-editor.org/errata/rfc6225/ 10.17487/RFC6225 @@ -203987,7 +203987,7 @@ IETF rai sipcore - https://www.rfc-editor.org/errata/rfc6228 + https://www.rfc-editor.org/errata/rfc6228/ 10.17487/RFC6228 @@ -204060,7 +204060,7 @@ IETF rai mediactrl - https://www.rfc-editor.org/errata/rfc6230 + https://www.rfc-editor.org/errata/rfc6230/ 10.17487/RFC6230 @@ -204096,7 +204096,7 @@ IETF rai mediactrl - https://www.rfc-editor.org/errata/rfc6231 + https://www.rfc-editor.org/errata/rfc6231/ 10.17487/RFC6231 @@ -204219,7 +204219,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6234 + https://www.rfc-editor.org/errata/rfc6234/ 10.17487/RFC6234 @@ -204255,7 +204255,7 @@ IETF ops ipfix - https://www.rfc-editor.org/errata/rfc6235 + https://www.rfc-editor.org/errata/rfc6235/ 10.17487/RFC6235 @@ -204285,7 +204285,7 @@ IETF rai mmusic - https://www.rfc-editor.org/errata/rfc6236 + https://www.rfc-editor.org/errata/rfc6236/ 10.17487/RFC6236 @@ -204363,7 +204363,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6238 + https://www.rfc-editor.org/errata/rfc6238/ 10.17487/RFC6238 @@ -204387,7 +204387,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6239 + https://www.rfc-editor.org/errata/rfc6239/ 10.17487/RFC6239 @@ -204475,7 +204475,7 @@ IETF ops netconf - https://www.rfc-editor.org/errata/rfc6241 + https://www.rfc-editor.org/errata/rfc6241/ 10.17487/RFC6241 @@ -204506,7 +204506,7 @@ IETF ops netconf - https://www.rfc-editor.org/errata/rfc6242 + https://www.rfc-editor.org/errata/rfc6242/ 10.17487/RFC6242 @@ -204537,7 +204537,7 @@ IETF ops netconf - https://www.rfc-editor.org/errata/rfc6243 + https://www.rfc-editor.org/errata/rfc6243/ 10.17487/RFC6243 @@ -204565,7 +204565,7 @@ IETF ops netmod - https://www.rfc-editor.org/errata/rfc6244 + https://www.rfc-editor.org/errata/rfc6244/ 10.17487/RFC6244 @@ -204759,7 +204759,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6249 + https://www.rfc-editor.org/errata/rfc6249/ 10.17487/RFC6249 @@ -205019,7 +205019,7 @@ EXPERIMENTAL EXPERIMENTAL IRTF - https://www.rfc-editor.org/errata/rfc6257 + https://www.rfc-editor.org/errata/rfc6257/ 10.17487/RFC6257 @@ -205253,7 +205253,7 @@ IETF app httpstate - https://www.rfc-editor.org/errata/rfc6265 + https://www.rfc-editor.org/errata/rfc6265/ 10.17487/RFC6265 @@ -205286,7 +205286,7 @@ IETF wit httpbis - https://www.rfc-editor.org/errata/rfc6266 + https://www.rfc-editor.org/errata/rfc6266/ 10.17487/RFC6266 @@ -205429,7 +205429,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6270 + https://www.rfc-editor.org/errata/rfc6270/ 10.17487/RFC6270 @@ -205549,7 +205549,7 @@ IETF ops opsec - https://www.rfc-editor.org/errata/rfc6274 + https://www.rfc-editor.org/errata/rfc6274/ 10.17487/RFC6274 @@ -205591,7 +205591,7 @@ IETF int mext - https://www.rfc-editor.org/errata/rfc6275 + https://www.rfc-editor.org/errata/rfc6275/ 10.17487/RFC6275 @@ -205634,7 +205634,7 @@ IETF int mext - https://www.rfc-editor.org/errata/rfc6276 + https://www.rfc-editor.org/errata/rfc6276/ 10.17487/RFC6276 @@ -205671,7 +205671,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc6277 + https://www.rfc-editor.org/errata/rfc6277/ 10.17487/RFC6277 @@ -205820,7 +205820,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6281 + https://www.rfc-editor.org/errata/rfc6281/ 10.17487/RFC6281 @@ -205863,7 +205863,7 @@ IETF int 6lowpan - https://www.rfc-editor.org/errata/rfc6282 + https://www.rfc-editor.org/errata/rfc6282/ 10.17487/RFC6282 @@ -206029,7 +206029,7 @@ IETF rtg idr - https://www.rfc-editor.org/errata/rfc6286 + https://www.rfc-editor.org/errata/rfc6286/ 10.17487/RFC6286 @@ -206072,7 +206072,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6287 + https://www.rfc-editor.org/errata/rfc6287/ 10.17487/RFC6287 @@ -206172,7 +206172,7 @@ IETF sec ipsecme - https://www.rfc-editor.org/errata/rfc6290 + https://www.rfc-editor.org/errata/rfc6290/ 10.17487/RFC6290 @@ -206240,7 +206240,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6292 + https://www.rfc-editor.org/errata/rfc6292/ 10.17487/RFC6292 @@ -206356,7 +206356,7 @@ IETF rai payload - https://www.rfc-editor.org/errata/rfc6295 + https://www.rfc-editor.org/errata/rfc6295/ 10.17487/RFC6295 @@ -206385,7 +206385,7 @@ EXPERIMENTAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6296 + https://www.rfc-editor.org/errata/rfc6296/ 10.17487/RFC6296 @@ -206822,7 +206822,7 @@ IETF rtg pwe3 - https://www.rfc-editor.org/errata/rfc6310 + https://www.rfc-editor.org/errata/rfc6310/ 10.17487/RFC6310 @@ -206866,7 +206866,7 @@ IETF sec ipsecme - https://www.rfc-editor.org/errata/rfc6311 + https://www.rfc-editor.org/errata/rfc6311/ 10.17487/RFC6311 @@ -206933,7 +206933,7 @@ IETF ops ipfix - https://www.rfc-editor.org/errata/rfc6313 + https://www.rfc-editor.org/errata/rfc6313/ 10.17487/RFC6313 @@ -207216,7 +207216,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6321 + https://www.rfc-editor.org/errata/rfc6321/ 10.17487/RFC6321 @@ -207364,7 +207364,7 @@ IETF int trill - https://www.rfc-editor.org/errata/rfc6325 + https://www.rfc-editor.org/errata/rfc6325/ 10.17487/RFC6325 @@ -207410,7 +207410,7 @@ IETF rtg isis - https://www.rfc-editor.org/errata/rfc6326 + https://www.rfc-editor.org/errata/rfc6326/ 10.17487/RFC6326 @@ -207531,7 +207531,7 @@ IETF rtg isis - https://www.rfc-editor.org/errata/rfc6329 + https://www.rfc-editor.org/errata/rfc6329/ 10.17487/RFC6329 @@ -207576,7 +207576,7 @@ IETF tsv rmt - https://www.rfc-editor.org/errata/rfc6330 + https://www.rfc-editor.org/errata/rfc6330/ 10.17487/RFC6330 @@ -207685,7 +207685,7 @@ IETF int softwire - https://www.rfc-editor.org/errata/rfc6333 + https://www.rfc-editor.org/errata/rfc6333/ 10.17487/RFC6333 @@ -207773,7 +207773,7 @@ IETF wit tsvwg - https://www.rfc-editor.org/errata/rfc6335 + https://www.rfc-editor.org/errata/rfc6335/ 10.17487/RFC6335 @@ -208101,7 +208101,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6345 + https://www.rfc-editor.org/errata/rfc6345/ 10.17487/RFC6345 @@ -208169,7 +208169,7 @@ IETF sec tls - https://www.rfc-editor.org/errata/rfc6347 + https://www.rfc-editor.org/errata/rfc6347/ 10.17487/RFC6347 @@ -208283,7 +208283,7 @@ IETF app vcarddav - https://www.rfc-editor.org/errata/rfc6350 + https://www.rfc-editor.org/errata/rfc6350/ 10.17487/RFC6350 @@ -208314,7 +208314,7 @@ IETF app vcarddav - https://www.rfc-editor.org/errata/rfc6351 + https://www.rfc-editor.org/errata/rfc6351/ 10.17487/RFC6351 @@ -208347,7 +208347,7 @@ IETF app vcarddav - https://www.rfc-editor.org/errata/rfc6352 + https://www.rfc-editor.org/errata/rfc6352/ 10.17487/RFC6352 @@ -208774,7 +208774,7 @@ IETF app appsawg - https://www.rfc-editor.org/errata/rfc6365 + https://www.rfc-editor.org/errata/rfc6365/ 10.17487/RFC6365 @@ -208838,7 +208838,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6367 + https://www.rfc-editor.org/errata/rfc6367/ 10.17487/RFC6367 @@ -208887,7 +208887,7 @@ IETF rtg l3vpn - https://www.rfc-editor.org/errata/rfc6368 + https://www.rfc-editor.org/errata/rfc6368/ 10.17487/RFC6368 @@ -208979,7 +208979,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc6371 + https://www.rfc-editor.org/errata/rfc6371/ 10.17487/RFC6371 @@ -209087,7 +209087,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc6374 + https://www.rfc-editor.org/errata/rfc6374/ 10.17487/RFC6374 @@ -209179,7 +209179,7 @@ IETF sec dkim - https://www.rfc-editor.org/errata/rfc6376 + https://www.rfc-editor.org/errata/rfc6376/ 10.17487/RFC6376 @@ -209219,7 +209219,7 @@ IETF sec dkim - https://www.rfc-editor.org/errata/rfc6377 + https://www.rfc-editor.org/errata/rfc6377/ 10.17487/RFC6377 @@ -209378,7 +209378,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6381 + https://www.rfc-editor.org/errata/rfc6381/ 10.17487/RFC6381 @@ -209562,7 +209562,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc6386 + https://www.rfc-editor.org/errata/rfc6386/ 10.17487/RFC6386 @@ -209790,7 +209790,7 @@ IETF tsv decade - https://www.rfc-editor.org/errata/rfc6392 + https://www.rfc-editor.org/errata/rfc6392/ 10.17487/RFC6392 @@ -209910,7 +209910,7 @@ IETF ops grow - https://www.rfc-editor.org/errata/rfc6396 + https://www.rfc-editor.org/errata/rfc6396/ 10.17487/RFC6396 @@ -210047,7 +210047,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc6402 + https://www.rfc-editor.org/errata/rfc6402/ 10.17487/RFC6402 @@ -210227,7 +210227,7 @@ IETF sec msec - https://www.rfc-editor.org/errata/rfc6407 + https://www.rfc-editor.org/errata/rfc6407/ 10.17487/RFC6407 @@ -210308,7 +210308,7 @@ IETF app yam - https://www.rfc-editor.org/errata/rfc6409 + https://www.rfc-editor.org/errata/rfc6409/ 10.17487/RFC6409 @@ -210346,7 +210346,7 @@ BEST CURRENT PRACTICE IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6410 + https://www.rfc-editor.org/errata/rfc6410/ 10.17487/RFC6410 @@ -210509,7 +210509,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6415 + https://www.rfc-editor.org/errata/rfc6415/ 10.17487/RFC6415 @@ -210622,7 +210622,7 @@ IETF int mif - https://www.rfc-editor.org/errata/rfc6418 + https://www.rfc-editor.org/errata/rfc6418/ 10.17487/RFC6418 @@ -210871,7 +210871,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc6425 + https://www.rfc-editor.org/errata/rfc6425/ 10.17487/RFC6425 @@ -210913,7 +210913,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc6426 + https://www.rfc-editor.org/errata/rfc6426/ 10.17487/RFC6426 @@ -211004,7 +211004,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc6428 + https://www.rfc-editor.org/errata/rfc6428/ 10.17487/RFC6428 @@ -211214,7 +211214,7 @@ IETF int 6man - https://www.rfc-editor.org/errata/rfc6434 + https://www.rfc-editor.org/errata/rfc6434/ 10.17487/RFC6434 @@ -211265,7 +211265,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc6435 + https://www.rfc-editor.org/errata/rfc6435/ 10.17487/RFC6435 @@ -211530,7 +211530,7 @@ IETF rai sipcore - https://www.rfc-editor.org/errata/rfc6442 + https://www.rfc-editor.org/errata/rfc6442/ 10.17487/RFC6442 @@ -211933,7 +211933,7 @@ IETF app websec - https://www.rfc-editor.org/errata/rfc6454 + https://www.rfc-editor.org/errata/rfc6454/ 10.17487/RFC6454 @@ -211971,7 +211971,7 @@ IETF app hybi - https://www.rfc-editor.org/errata/rfc6455 + https://www.rfc-editor.org/errata/rfc6455/ 10.17487/RFC6455 @@ -212081,7 +212081,7 @@ IETF wit tsvwg - https://www.rfc-editor.org/errata/rfc6458 + https://www.rfc-editor.org/errata/rfc6458/ 10.17487/RFC6458 @@ -212161,7 +212161,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6460 + https://www.rfc-editor.org/errata/rfc6460/ 10.17487/RFC6460 @@ -212491,7 +212491,7 @@ IETF ops netconf - https://www.rfc-editor.org/errata/rfc6470 + https://www.rfc-editor.org/errata/rfc6470/ 10.17487/RFC6470 @@ -212616,7 +212616,7 @@ IETF app vcarddav - https://www.rfc-editor.org/errata/rfc6474 + https://www.rfc-editor.org/errata/rfc6474/ 10.17487/RFC6474 @@ -212651,7 +212651,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6475 + https://www.rfc-editor.org/errata/rfc6475/ 10.17487/RFC6475 @@ -212678,7 +212678,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6476 + https://www.rfc-editor.org/errata/rfc6476/ 10.17487/RFC6476 @@ -212803,7 +212803,7 @@ IETF rtg sidr - https://www.rfc-editor.org/errata/rfc6480 + https://www.rfc-editor.org/errata/rfc6480/ 10.17487/RFC6480 @@ -212875,7 +212875,7 @@ IETF rtg sidr - https://www.rfc-editor.org/errata/rfc6482 + https://www.rfc-editor.org/errata/rfc6482/ 10.17487/RFC6482 @@ -212977,7 +212977,7 @@ IETF rtg sidr - https://www.rfc-editor.org/errata/rfc6485 + https://www.rfc-editor.org/errata/rfc6485/ 10.17487/RFC6485 @@ -213056,7 +213056,7 @@ IETF rtg sidr - https://www.rfc-editor.org/errata/rfc6487 + https://www.rfc-editor.org/errata/rfc6487/ 10.17487/RFC6487 @@ -213095,7 +213095,7 @@ IETF rtg sidr - https://www.rfc-editor.org/errata/rfc6488 + https://www.rfc-editor.org/errata/rfc6488/ 10.17487/RFC6488 @@ -213132,7 +213132,7 @@ IETF rtg sidr - https://www.rfc-editor.org/errata/rfc6489 + https://www.rfc-editor.org/errata/rfc6489/ 10.17487/RFC6489 @@ -213276,7 +213276,7 @@ IETF rtg sidr - https://www.rfc-editor.org/errata/rfc6493 + https://www.rfc-editor.org/errata/rfc6493/ 10.17487/RFC6493 @@ -213314,7 +213314,7 @@ IETF int csi - https://www.rfc-editor.org/errata/rfc6494 + https://www.rfc-editor.org/errata/rfc6494/ 10.17487/RFC6494 @@ -213426,7 +213426,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6497 + https://www.rfc-editor.org/errata/rfc6497/ 10.17487/RFC6497 @@ -213571,7 +213571,7 @@ IETF rai xcon - https://www.rfc-editor.org/errata/rfc6503 + https://www.rfc-editor.org/errata/rfc6503/ 10.17487/RFC6503 @@ -213638,7 +213638,7 @@ IETF rai mediactrl - https://www.rfc-editor.org/errata/rfc6505 + https://www.rfc-editor.org/errata/rfc6505/ 10.17487/RFC6505 @@ -213675,7 +213675,7 @@ IETF rtg ospf - https://www.rfc-editor.org/errata/rfc6506 + https://www.rfc-editor.org/errata/rfc6506/ 10.17487/RFC6506 @@ -213845,7 +213845,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc6512 + https://www.rfc-editor.org/errata/rfc6512/ 10.17487/RFC6512 @@ -213882,7 +213882,7 @@ IETF rtg l3vpn - https://www.rfc-editor.org/errata/rfc6513 + https://www.rfc-editor.org/errata/rfc6513/ 10.17487/RFC6513 @@ -213930,7 +213930,7 @@ IETF rtg l3vpn - https://www.rfc-editor.org/errata/rfc6514 + https://www.rfc-editor.org/errata/rfc6514/ 10.17487/RFC6514 @@ -213966,7 +213966,7 @@ IETF rtg l3vpn - https://www.rfc-editor.org/errata/rfc6515 + https://www.rfc-editor.org/errata/rfc6515/ 10.17487/RFC6515 @@ -214138,7 +214138,7 @@ IETF int softwire - https://www.rfc-editor.org/errata/rfc6519 + https://www.rfc-editor.org/errata/rfc6519/ 10.17487/RFC6519 @@ -214175,7 +214175,7 @@ IETF sec tls - https://www.rfc-editor.org/errata/rfc6520 + https://www.rfc-editor.org/errata/rfc6520/ 10.17487/RFC6520 @@ -214348,7 +214348,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6527 + https://www.rfc-editor.org/errata/rfc6527/ 10.17487/RFC6527 @@ -214491,7 +214491,7 @@ IETF app eai - https://www.rfc-editor.org/errata/rfc6531 + https://www.rfc-editor.org/errata/rfc6531/ 10.17487/RFC6531 @@ -214530,7 +214530,7 @@ IETF app eai - https://www.rfc-editor.org/errata/rfc6532 + https://www.rfc-editor.org/errata/rfc6532/ 10.17487/RFC6532 @@ -214651,7 +214651,7 @@ IETF tsv behave - https://www.rfc-editor.org/errata/rfc6535 + https://www.rfc-editor.org/errata/rfc6535/ 10.17487/RFC6535 @@ -214687,7 +214687,7 @@ IETF ops netconf - https://www.rfc-editor.org/errata/rfc6536 + https://www.rfc-editor.org/errata/rfc6536/ 10.17487/RFC6536 @@ -214946,7 +214946,7 @@ IETF rai mmusic - https://www.rfc-editor.org/errata/rfc6544 + https://www.rfc-editor.org/errata/rfc6544/ 10.17487/RFC6544 @@ -214980,7 +214980,7 @@ IETF sec mile - https://www.rfc-editor.org/errata/rfc6545 + https://www.rfc-editor.org/errata/rfc6545/ 10.17487/RFC6545 @@ -215014,7 +215014,7 @@ IETF sec mile - https://www.rfc-editor.org/errata/rfc6546 + https://www.rfc-editor.org/errata/rfc6546/ 10.17487/RFC6546 @@ -215122,7 +215122,7 @@ IETF rtg ospf - https://www.rfc-editor.org/errata/rfc6549 + https://www.rfc-editor.org/errata/rfc6549/ 10.17487/RFC6549 @@ -215190,7 +215190,7 @@ IETF rtg roll - https://www.rfc-editor.org/errata/rfc6550 + https://www.rfc-editor.org/errata/rfc6550/ 10.17487/RFC6550 @@ -215235,7 +215235,7 @@ IETF rtg roll - https://www.rfc-editor.org/errata/rfc6551 + https://www.rfc-editor.org/errata/rfc6551/ 10.17487/RFC6551 @@ -215376,7 +215376,7 @@ IETF ops v6ops - https://www.rfc-editor.org/errata/rfc6555 + https://www.rfc-editor.org/errata/rfc6555/ 10.17487/RFC6555 @@ -215472,7 +215472,7 @@ IETF app sieve - https://www.rfc-editor.org/errata/rfc6558 + https://www.rfc-editor.org/errata/rfc6558/ 10.17487/RFC6558 @@ -215572,7 +215572,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6561 + https://www.rfc-editor.org/errata/rfc6561/ 10.17487/RFC6561 @@ -215673,7 +215673,7 @@ IETF int 6man - https://www.rfc-editor.org/errata/rfc6564 + https://www.rfc-editor.org/errata/rfc6564/ 10.17487/RFC6564 @@ -215891,7 +215891,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6570 + https://www.rfc-editor.org/errata/rfc6570/ 10.17487/RFC6570 @@ -215943,7 +215943,7 @@ IETF rtg rtgwg - https://www.rfc-editor.org/errata/rfc6571 + https://www.rfc-editor.org/errata/rfc6571/ 10.17487/RFC6571 @@ -216121,7 +216121,7 @@ IETF ops ippm - https://www.rfc-editor.org/errata/rfc6576 + https://www.rfc-editor.org/errata/rfc6576/ 10.17487/RFC6576 @@ -216237,7 +216237,7 @@ IETF tsv storm - https://www.rfc-editor.org/errata/rfc6580 + https://www.rfc-editor.org/errata/rfc6580/ 10.17487/RFC6580 @@ -216320,7 +216320,7 @@ IETF wit tcpm - https://www.rfc-editor.org/errata/rfc6582 + https://www.rfc-editor.org/errata/rfc6582/ 10.17487/RFC6582 @@ -216411,7 +216411,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6585 + https://www.rfc-editor.org/errata/rfc6585/ 10.17487/RFC6585 @@ -216495,7 +216495,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6588 + https://www.rfc-editor.org/errata/rfc6588/ 10.17487/RFC6588 @@ -216673,7 +216673,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6594 + https://www.rfc-editor.org/errata/rfc6594/ 10.17487/RFC6594 @@ -216935,7 +216935,7 @@ IETF int dhc - https://www.rfc-editor.org/errata/rfc6603 + https://www.rfc-editor.org/errata/rfc6603/ 10.17487/RFC6603 @@ -217406,7 +217406,7 @@ IETF sec kitten - https://www.rfc-editor.org/errata/rfc6616 + https://www.rfc-editor.org/errata/rfc6616/ 10.17487/RFC6616 @@ -217540,7 +217540,7 @@ IETF int savi - https://www.rfc-editor.org/errata/rfc6620 + https://www.rfc-editor.org/errata/rfc6620/ 10.17487/RFC6620 @@ -217581,7 +217581,7 @@ IETF rtg manet - https://www.rfc-editor.org/errata/rfc6621 + https://www.rfc-editor.org/errata/rfc6621/ 10.17487/RFC6621 @@ -217731,7 +217731,7 @@ IETF rtg l3vpn - https://www.rfc-editor.org/errata/rfc6625 + https://www.rfc-editor.org/errata/rfc6625/ 10.17487/RFC6625 @@ -218129,7 +218129,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6637 + https://www.rfc-editor.org/errata/rfc6637/ 10.17487/RFC6637 @@ -218207,7 +218207,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc6639 + https://www.rfc-editor.org/errata/rfc6639/ 10.17487/RFC6639 @@ -218333,7 +218333,7 @@ IETF ops netmod - https://www.rfc-editor.org/errata/rfc6643 + https://www.rfc-editor.org/errata/rfc6643/ 10.17487/RFC6643 @@ -218644,7 +218644,7 @@ IETF app marf - https://www.rfc-editor.org/errata/rfc6652 + https://www.rfc-editor.org/errata/rfc6652/ 10.17487/RFC6652 @@ -218738,7 +218738,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6655 + https://www.rfc-editor.org/errata/rfc6655/ 10.17487/RFC6655 @@ -218769,7 +218769,7 @@ IETF int dhc - https://www.rfc-editor.org/errata/rfc6656 + https://www.rfc-editor.org/errata/rfc6656/ 10.17487/RFC6656 @@ -219227,7 +219227,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc6669 + https://www.rfc-editor.org/errata/rfc6669/ 10.17487/RFC6669 @@ -219312,7 +219312,7 @@ IETF int dnsext - https://www.rfc-editor.org/errata/rfc6672 + https://www.rfc-editor.org/errata/rfc6672/ 10.17487/RFC6672 @@ -219579,7 +219579,7 @@ IETF wit avtcore - https://www.rfc-editor.org/errata/rfc6679 + https://www.rfc-editor.org/errata/rfc6679/ 10.17487/RFC6679 @@ -219615,7 +219615,7 @@ IETF sec kitten - https://www.rfc-editor.org/errata/rfc6680 + https://www.rfc-editor.org/errata/rfc6680/ 10.17487/RFC6680 @@ -219808,7 +219808,7 @@ IETF app spfbis - https://www.rfc-editor.org/errata/rfc6686 + https://www.rfc-editor.org/errata/rfc6686/ 10.17487/RFC6686 @@ -219844,7 +219844,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc6687 + https://www.rfc-editor.org/errata/rfc6687/ 10.17487/RFC6687 @@ -219943,7 +219943,7 @@ IETF wit core - https://www.rfc-editor.org/errata/rfc6690 + https://www.rfc-editor.org/errata/rfc6690/ 10.17487/RFC6690 @@ -220224,7 +220224,7 @@ IETF sec dane - https://www.rfc-editor.org/errata/rfc6698 + https://www.rfc-editor.org/errata/rfc6698/ 10.17487/RFC6698 @@ -220362,7 +220362,7 @@ IETF int dhc - https://www.rfc-editor.org/errata/rfc6704 + https://www.rfc-editor.org/errata/rfc6704/ 10.17487/RFC6704 @@ -220438,7 +220438,7 @@ EXPERIMENTAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6706 + https://www.rfc-editor.org/errata/rfc6706/ 10.17487/RFC6706 @@ -220570,7 +220570,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6710 + https://www.rfc-editor.org/errata/rfc6710/ 10.17487/RFC6710 @@ -220732,7 +220732,7 @@ IETF app vcarddav - https://www.rfc-editor.org/errata/rfc6715 + https://www.rfc-editor.org/errata/rfc6715/ 10.17487/RFC6715 @@ -220772,7 +220772,7 @@ IETF rai codec - https://www.rfc-editor.org/errata/rfc6716 + https://www.rfc-editor.org/errata/rfc6716/ 10.17487/RFC6716 @@ -220877,7 +220877,7 @@ IETF rtg roll - https://www.rfc-editor.org/errata/rfc6719 + https://www.rfc-editor.org/errata/rfc6719/ 10.17487/RFC6719 @@ -221067,7 +221067,7 @@ IETF int 6man - https://www.rfc-editor.org/errata/rfc6724 + https://www.rfc-editor.org/errata/rfc6724/ 10.17487/RFC6724 @@ -221136,7 +221136,7 @@ IETF tsv rmt - https://www.rfc-editor.org/errata/rfc6726 + https://www.rfc-editor.org/errata/rfc6726/ 10.17487/RFC6726 @@ -221208,7 +221208,7 @@ IETF ops ipfix - https://www.rfc-editor.org/errata/rfc6728 + https://www.rfc-editor.org/errata/rfc6728/ 10.17487/RFC6728 @@ -221240,7 +221240,7 @@ IETF app appsawg - https://www.rfc-editor.org/errata/rfc6729 + https://www.rfc-editor.org/errata/rfc6729/ 10.17487/RFC6729 @@ -221386,7 +221386,7 @@ IETF ops dime - https://www.rfc-editor.org/errata/rfc6733 + https://www.rfc-editor.org/errata/rfc6733/ 10.17487/RFC6733 @@ -221451,7 +221451,7 @@ IETF ops dime - https://www.rfc-editor.org/errata/rfc6735 + https://www.rfc-editor.org/errata/rfc6735/ 10.17487/RFC6735 @@ -221585,7 +221585,7 @@ IETF rai ecrit - https://www.rfc-editor.org/errata/rfc6739 + https://www.rfc-editor.org/errata/rfc6739/ 10.17487/RFC6739 @@ -221611,7 +221611,7 @@ EXPERIMENTAL EXPERIMENTAL IRTF - https://www.rfc-editor.org/errata/rfc6740 + https://www.rfc-editor.org/errata/rfc6740/ 10.17487/RFC6740 @@ -221665,7 +221665,7 @@ EXPERIMENTAL EXPERIMENTAL IRTF - https://www.rfc-editor.org/errata/rfc6742 + https://www.rfc-editor.org/errata/rfc6742/ 10.17487/RFC6742 @@ -221691,7 +221691,7 @@ EXPERIMENTAL EXPERIMENTAL IRTF - https://www.rfc-editor.org/errata/rfc6743 + https://www.rfc-editor.org/errata/rfc6743/ 10.17487/RFC6743 @@ -221867,7 +221867,7 @@ IETF sec oauth - https://www.rfc-editor.org/errata/rfc6749 + https://www.rfc-editor.org/errata/rfc6749/ 10.17487/RFC6749 @@ -221914,7 +221914,7 @@ IETF sec oauth - https://www.rfc-editor.org/errata/rfc6750 + https://www.rfc-editor.org/errata/rfc6750/ 10.17487/RFC6750 @@ -221957,7 +221957,7 @@ EXPERIMENTAL EXPERIMENTAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc6751 + https://www.rfc-editor.org/errata/rfc6751/ 10.17487/RFC6751 @@ -222137,7 +222137,7 @@ INFORMATIONAL INFORMATIONAL IAB - https://www.rfc-editor.org/errata/rfc6756 + https://www.rfc-editor.org/errata/rfc6756/ 10.17487/RFC6756 @@ -222244,7 +222244,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6759 + https://www.rfc-editor.org/errata/rfc6759/ 10.17487/RFC6759 @@ -222301,7 +222301,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6761 + https://www.rfc-editor.org/errata/rfc6761/ 10.17487/RFC6761 @@ -222328,7 +222328,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6762 + https://www.rfc-editor.org/errata/rfc6762/ 10.17487/RFC6762 @@ -222358,7 +222358,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6763 + https://www.rfc-editor.org/errata/rfc6763/ 10.17487/RFC6763 @@ -222432,7 +222432,7 @@ IETF ops adslmib - https://www.rfc-editor.org/errata/rfc6765 + https://www.rfc-editor.org/errata/rfc6765/ 10.17487/RFC6765 @@ -222466,7 +222466,7 @@ IETF ops adslmib - https://www.rfc-editor.org/errata/rfc6766 + https://www.rfc-editor.org/errata/rfc6766/ 10.17487/RFC6766 @@ -222505,7 +222505,7 @@ IETF ops adslmib - https://www.rfc-editor.org/errata/rfc6767 + https://www.rfc-editor.org/errata/rfc6767/ 10.17487/RFC6767 @@ -222544,7 +222544,7 @@ IETF ops adslmib - https://www.rfc-editor.org/errata/rfc6768 + https://www.rfc-editor.org/errata/rfc6768/ 10.17487/RFC6768 @@ -222743,7 +222743,7 @@ IETF tsv dccp - https://www.rfc-editor.org/errata/rfc6773 + https://www.rfc-editor.org/errata/rfc6773/ 10.17487/RFC6773 @@ -223045,7 +223045,7 @@ IETF ops dnsop - https://www.rfc-editor.org/errata/rfc6781 + https://www.rfc-editor.org/errata/rfc6781/ 10.17487/RFC6781 @@ -223244,7 +223244,7 @@ IETF rai speechsc - https://www.rfc-editor.org/errata/rfc6787 + https://www.rfc-editor.org/errata/rfc6787/ 10.17487/RFC6787 @@ -223283,7 +223283,7 @@ IETF int 6man - https://www.rfc-editor.org/errata/rfc6788 + https://www.rfc-editor.org/errata/rfc6788/ 10.17487/RFC6788 @@ -223374,7 +223374,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc6790 + https://www.rfc-editor.org/errata/rfc6790/ 10.17487/RFC6790 @@ -223491,7 +223491,7 @@ IETF rtg idr - https://www.rfc-editor.org/errata/rfc6793 + https://www.rfc-editor.org/errata/rfc6793/ 10.17487/RFC6793 @@ -223633,7 +223633,7 @@ IETF app websec - https://www.rfc-editor.org/errata/rfc6797 + https://www.rfc-editor.org/errata/rfc6797/ 10.17487/RFC6797 @@ -223763,7 +223763,7 @@ IETF sec krb-wg - https://www.rfc-editor.org/errata/rfc6803 + https://www.rfc-editor.org/errata/rfc6803/ 10.17487/RFC6803 @@ -224335,7 +224335,7 @@ IETF sec oauth - https://www.rfc-editor.org/errata/rfc6819 + https://www.rfc-editor.org/errata/rfc6819/ 10.17487/RFC6819 @@ -224454,7 +224454,7 @@ IETF rtg isis - https://www.rfc-editor.org/errata/rfc6822 + https://www.rfc-editor.org/errata/rfc6822/ 10.17487/RFC6822 @@ -224524,7 +224524,7 @@ IETF tsv mptcp - https://www.rfc-editor.org/errata/rfc6824 + https://www.rfc-editor.org/errata/rfc6824/ 10.17487/RFC6824 @@ -225032,7 +225032,7 @@ IETF app appsawg - https://www.rfc-editor.org/errata/rfc6839 + https://www.rfc-editor.org/errata/rfc6839/ 10.17487/RFC6839 @@ -225076,7 +225076,7 @@ IETF int dnsext - https://www.rfc-editor.org/errata/rfc6840 + https://www.rfc-editor.org/errata/rfc6840/ 10.17487/RFC6840 @@ -225217,7 +225217,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc6844 + https://www.rfc-editor.org/errata/rfc6844/ 10.17487/RFC6844 @@ -225295,7 +225295,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6846 + https://www.rfc-editor.org/errata/rfc6846/ 10.17487/RFC6846 @@ -225623,7 +225623,7 @@ IETF app eai - https://www.rfc-editor.org/errata/rfc6855 + https://www.rfc-editor.org/errata/rfc6855/ 10.17487/RFC6855 @@ -225693,7 +225693,7 @@ IETF app eai - https://www.rfc-editor.org/errata/rfc6857 + https://www.rfc-editor.org/errata/rfc6857/ 10.17487/RFC6857 @@ -225790,7 +225790,7 @@ IETF rtg ospf - https://www.rfc-editor.org/errata/rfc6860 + https://www.rfc-editor.org/errata/rfc6860/ 10.17487/RFC6860 @@ -226025,7 +226025,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6868 + https://www.rfc-editor.org/errata/rfc6868/ 10.17487/RFC6868 @@ -226101,7 +226101,7 @@ IETF rtg pwe3 - https://www.rfc-editor.org/errata/rfc6870 + https://www.rfc-editor.org/errata/rfc6870/ 10.17487/RFC6870 @@ -226252,7 +226252,7 @@ IETF int 6man - https://www.rfc-editor.org/errata/rfc6874 + https://www.rfc-editor.org/errata/rfc6874/ 10.17487/RFC6874 @@ -226387,7 +226387,7 @@ IETF rai sipcore - https://www.rfc-editor.org/errata/rfc6878 + https://www.rfc-editor.org/errata/rfc6878/ 10.17487/RFC6878 @@ -226635,7 +226635,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc6886 + https://www.rfc-editor.org/errata/rfc6886/ 10.17487/RFC6886 @@ -226682,7 +226682,7 @@ IETF int pcp - https://www.rfc-editor.org/errata/rfc6887 + https://www.rfc-editor.org/errata/rfc6887/ 10.17487/RFC6887 @@ -226821,7 +226821,7 @@ BEST CURRENT PRACTICE IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6890 + https://www.rfc-editor.org/errata/rfc6890/ 10.17487/RFC6890 @@ -226865,7 +226865,7 @@ IETF int dnsext - https://www.rfc-editor.org/errata/rfc6891 + https://www.rfc-editor.org/errata/rfc6891/ 10.17487/RFC6891 @@ -227026,7 +227026,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc6896 + https://www.rfc-editor.org/errata/rfc6896/ 10.17487/RFC6896 @@ -227131,7 +227131,7 @@ IETF app appsawg - https://www.rfc-editor.org/errata/rfc6901 + https://www.rfc-editor.org/errata/rfc6901/ 10.17487/RFC6901 @@ -227161,7 +227161,7 @@ IETF app appsawg - https://www.rfc-editor.org/errata/rfc6902 + https://www.rfc-editor.org/errata/rfc6902/ 10.17487/RFC6902 @@ -227355,7 +227355,7 @@ IETF int softwire - https://www.rfc-editor.org/errata/rfc6908 + https://www.rfc-editor.org/errata/rfc6908/ 10.17487/RFC6908 @@ -227789,7 +227789,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6920 + https://www.rfc-editor.org/errata/rfc6920/ 10.17487/RFC6920 @@ -227813,7 +227813,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc6921 + https://www.rfc-editor.org/errata/rfc6921/ 10.17487/RFC6921 @@ -228108,7 +228108,7 @@ IETF int softwire - https://www.rfc-editor.org/errata/rfc6930 + https://www.rfc-editor.org/errata/rfc6930/ 10.17487/RFC6930 @@ -228138,7 +228138,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6931 + https://www.rfc-editor.org/errata/rfc6931/ 10.17487/RFC6931 @@ -228208,7 +228208,7 @@ IETF ops eman - https://www.rfc-editor.org/errata/rfc6933 + https://www.rfc-editor.org/errata/rfc6933/ 10.17487/RFC6933 @@ -228284,7 +228284,7 @@ IETF int 6man - https://www.rfc-editor.org/errata/rfc6935 + https://www.rfc-editor.org/errata/rfc6935/ 10.17487/RFC6935 @@ -228312,7 +228312,7 @@ IETF int 6man - https://www.rfc-editor.org/errata/rfc6936 + https://www.rfc-editor.org/errata/rfc6936/ 10.17487/RFC6936 @@ -228449,7 +228449,7 @@ IETF rai p2psip - https://www.rfc-editor.org/errata/rfc6940 + https://www.rfc-editor.org/errata/rfc6940/ 10.17487/RFC6940 @@ -228595,7 +228595,7 @@ IETF int dnsext - https://www.rfc-editor.org/errata/rfc6944 + https://www.rfc-editor.org/errata/rfc6944/ 10.17487/RFC6944 @@ -228663,7 +228663,7 @@ IETF int 6man - https://www.rfc-editor.org/errata/rfc6946 + https://www.rfc-editor.org/errata/rfc6946/ 10.17487/RFC6946 @@ -228982,7 +228982,7 @@ IETF rtg forces - https://www.rfc-editor.org/errata/rfc6956 + https://www.rfc-editor.org/errata/rfc6956/ 10.17487/RFC6956 @@ -229060,7 +229060,7 @@ IETF rai xrblock - https://www.rfc-editor.org/errata/rfc6958 + https://www.rfc-editor.org/errata/rfc6958/ 10.17487/RFC6958 @@ -229146,7 +229146,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc6960 + https://www.rfc-editor.org/errata/rfc6960/ 10.17487/RFC6960 @@ -229187,7 +229187,7 @@ IETF sec tls - https://www.rfc-editor.org/errata/rfc6961 + https://www.rfc-editor.org/errata/rfc6961/ 10.17487/RFC6961 @@ -229223,7 +229223,7 @@ EXPERIMENTAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6962 + https://www.rfc-editor.org/errata/rfc6962/ 10.17487/RFC6962 @@ -229422,7 +229422,7 @@ IETF rtg ospf - https://www.rfc-editor.org/errata/rfc6969 + https://www.rfc-editor.org/errata/rfc6969/ 10.17487/RFC6969 @@ -229505,7 +229505,7 @@ EXPERIMENTAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc6971 + https://www.rfc-editor.org/errata/rfc6971/ 10.17487/RFC6971 @@ -229784,7 +229784,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc6979 + https://www.rfc-editor.org/errata/rfc6979/ 10.17487/RFC6979 @@ -230059,7 +230059,7 @@ IETF rtg ospf - https://www.rfc-editor.org/errata/rfc6987 + https://www.rfc-editor.org/errata/rfc6987/ 10.17487/RFC6987 @@ -230209,7 +230209,7 @@ IETF ops netmod - https://www.rfc-editor.org/errata/rfc6991 + https://www.rfc-editor.org/errata/rfc6991/ 10.17487/RFC6991 @@ -230467,7 +230467,7 @@ IETF app appsawg - https://www.rfc-editor.org/errata/rfc7001 + https://www.rfc-editor.org/errata/rfc7001/ 10.17487/RFC7001 @@ -230532,7 +230532,7 @@ IETF rai xrblock - https://www.rfc-editor.org/errata/rfc7003 + https://www.rfc-editor.org/errata/rfc7003/ 10.17487/RFC7003 @@ -230640,7 +230640,7 @@ IETF rai mmusic - https://www.rfc-editor.org/errata/rfc7006 + https://www.rfc-editor.org/errata/rfc7006/ 10.17487/RFC7006 @@ -230729,7 +230729,7 @@ IETF sec oauth - https://www.rfc-editor.org/errata/rfc7009 + https://www.rfc-editor.org/errata/rfc7009/ 10.17487/RFC7009 @@ -230804,7 +230804,7 @@ IETF ops ipfix - https://www.rfc-editor.org/errata/rfc7011 + https://www.rfc-editor.org/errata/rfc7011/ 10.17487/RFC7011 @@ -230837,7 +230837,7 @@ IETF ops ipfix - https://www.rfc-editor.org/errata/rfc7012 + https://www.rfc-editor.org/errata/rfc7012/ 10.17487/RFC7012 @@ -231086,7 +231086,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc7020 + https://www.rfc-editor.org/errata/rfc7020/ 10.17487/RFC7020 @@ -231365,7 +231365,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc7027 + https://www.rfc-editor.org/errata/rfc7027/ 10.17487/RFC7027 @@ -231488,7 +231488,7 @@ IETF sec pkix - https://www.rfc-editor.org/errata/rfc7030 + https://www.rfc-editor.org/errata/rfc7030/ 10.17487/RFC7030 @@ -231995,7 +231995,7 @@ IETF rai sipcore - https://www.rfc-editor.org/errata/rfc7044 + https://www.rfc-editor.org/errata/rfc7044/ 10.17487/RFC7044 @@ -232164,7 +232164,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc7049 + https://www.rfc-editor.org/errata/rfc7049/ 10.17487/RFC7049 @@ -232204,7 +232204,7 @@ IETF tsv behave - https://www.rfc-editor.org/errata/rfc7050 + https://www.rfc-editor.org/errata/rfc7050/ 10.17487/RFC7050 @@ -232270,7 +232270,7 @@ IETF int lisp - https://www.rfc-editor.org/errata/rfc7052 + https://www.rfc-editor.org/errata/rfc7052/ 10.17487/RFC7052 @@ -233352,7 +233352,7 @@ IETF ops v6ops - https://www.rfc-editor.org/errata/rfc7084 + https://www.rfc-editor.org/errata/rfc7084/ 10.17487/RFC7084 @@ -234010,7 +234010,7 @@ IETF rai geopriv - https://www.rfc-editor.org/errata/rfc7105 + https://www.rfc-editor.org/errata/rfc7105/ 10.17487/RFC7105 @@ -234089,7 +234089,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc7108 + https://www.rfc-editor.org/errata/rfc7108/ 10.17487/RFC7108 @@ -234168,7 +234168,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc7110 + https://www.rfc-editor.org/errata/rfc7110/ 10.17487/RFC7110 @@ -234203,7 +234203,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc7111 + https://www.rfc-editor.org/errata/rfc7111/ 10.17487/RFC7111 @@ -234314,7 +234314,7 @@ IETF rtg sidr - https://www.rfc-editor.org/errata/rfc7115 + https://www.rfc-editor.org/errata/rfc7115/ 10.17487/RFC7115 @@ -234340,7 +234340,7 @@ INFORMATIONAL INFORMATIONAL IRTF - https://www.rfc-editor.org/errata/rfc7116 + https://www.rfc-editor.org/errata/rfc7116/ 10.17487/RFC7116 @@ -234378,7 +234378,7 @@ IETF rtg l2vpn - https://www.rfc-editor.org/errata/rfc7117 + https://www.rfc-editor.org/errata/rfc7117/ 10.17487/RFC7117 @@ -234413,7 +234413,7 @@ IETF rai sipcore - https://www.rfc-editor.org/errata/rfc7118 + https://www.rfc-editor.org/errata/rfc7118/ 10.17487/RFC7118 @@ -234521,7 +234521,7 @@ IETF rtg forces - https://www.rfc-editor.org/errata/rfc7121 + https://www.rfc-editor.org/errata/rfc7121/ 10.17487/RFC7121 @@ -234670,7 +234670,7 @@ IETF ops opsec - https://www.rfc-editor.org/errata/rfc7126 + https://www.rfc-editor.org/errata/rfc7126/ 10.17487/RFC7126 @@ -234826,7 +234826,7 @@ IETF rtg bfd - https://www.rfc-editor.org/errata/rfc7130 + https://www.rfc-editor.org/errata/rfc7130/ 10.17487/RFC7130 @@ -234902,7 +234902,7 @@ IETF rtg sidr - https://www.rfc-editor.org/errata/rfc7132 + https://www.rfc-editor.org/errata/rfc7132/ 10.17487/RFC7132 @@ -235141,7 +235141,7 @@ IETF rtg ccamp - https://www.rfc-editor.org/errata/rfc7139 + https://www.rfc-editor.org/errata/rfc7139/ 10.17487/RFC7139 @@ -235230,7 +235230,7 @@ IETF wit tsvwg - https://www.rfc-editor.org/errata/rfc7141 + https://www.rfc-editor.org/errata/rfc7141/ 10.17487/RFC7141 @@ -235749,7 +235749,7 @@ IETF ops dime - https://www.rfc-editor.org/errata/rfc7155 + https://www.rfc-editor.org/errata/rfc7155/ 10.17487/RFC7155 @@ -235880,7 +235880,7 @@ IETF app json - https://www.rfc-editor.org/errata/rfc7159 + https://www.rfc-editor.org/errata/rfc7159/ 10.17487/RFC7159 @@ -235949,7 +235949,7 @@ IETF int multimob - https://www.rfc-editor.org/errata/rfc7161 + https://www.rfc-editor.org/errata/rfc7161/ 10.17487/RFC7161 @@ -235992,7 +235992,7 @@ IETF app qresync - https://www.rfc-editor.org/errata/rfc7162 + https://www.rfc-editor.org/errata/rfc7162/ 10.17487/RFC7162 @@ -236269,7 +236269,7 @@ IETF sec emu - https://www.rfc-editor.org/errata/rfc7170 + https://www.rfc-editor.org/errata/rfc7170/ 10.17487/RFC7170 @@ -236765,7 +236765,7 @@ IETF rtg manet - https://www.rfc-editor.org/errata/rfc7181 + https://www.rfc-editor.org/errata/rfc7181/ 10.17487/RFC7181 @@ -236806,7 +236806,7 @@ IETF rtg manet - https://www.rfc-editor.org/errata/rfc7182 + https://www.rfc-editor.org/errata/rfc7182/ 10.17487/RFC7182 @@ -236848,7 +236848,7 @@ IETF rtg manet - https://www.rfc-editor.org/errata/rfc7183 + https://www.rfc-editor.org/errata/rfc7183/ 10.17487/RFC7183 @@ -236962,7 +236962,7 @@ IETF rtg manet - https://www.rfc-editor.org/errata/rfc7186 + https://www.rfc-editor.org/errata/rfc7186/ 10.17487/RFC7186 @@ -237177,7 +237177,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc7193 + https://www.rfc-editor.org/errata/rfc7193/ 10.17487/RFC7193 @@ -237272,7 +237272,7 @@ IETF rtg idr - https://www.rfc-editor.org/errata/rfc7196 + https://www.rfc-editor.org/errata/rfc7196/ 10.17487/RFC7196 @@ -237527,7 +237527,7 @@ IETF sec mile - https://www.rfc-editor.org/errata/rfc7203 + https://www.rfc-editor.org/errata/rfc7203/ 10.17487/RFC7203 @@ -237696,7 +237696,7 @@ IETF app spfbis - https://www.rfc-editor.org/errata/rfc7208 + https://www.rfc-editor.org/errata/rfc7208/ 10.17487/RFC7208 @@ -237739,7 +237739,7 @@ IETF rtg l2vpn - https://www.rfc-editor.org/errata/rfc7209 + https://www.rfc-editor.org/errata/rfc7209/ 10.17487/RFC7209 @@ -237773,7 +237773,7 @@ IETF rtg karp - https://www.rfc-editor.org/errata/rfc7210 + https://www.rfc-editor.org/errata/rfc7210/ 10.17487/RFC7210 @@ -238202,7 +238202,7 @@ IETF ops netmod - https://www.rfc-editor.org/errata/rfc7223 + https://www.rfc-editor.org/errata/rfc7223/ 10.17487/RFC7223 @@ -238351,7 +238351,7 @@ IETF int dhc - https://www.rfc-editor.org/errata/rfc7227 + https://www.rfc-editor.org/errata/rfc7227/ 10.17487/RFC7227 @@ -238470,7 +238470,7 @@ IETF wit httpbis - https://www.rfc-editor.org/errata/rfc7230 + https://www.rfc-editor.org/errata/rfc7230/ 10.17487/RFC7230 @@ -238518,7 +238518,7 @@ IETF wit httpbis - https://www.rfc-editor.org/errata/rfc7231 + https://www.rfc-editor.org/errata/rfc7231/ 10.17487/RFC7231 @@ -238559,7 +238559,7 @@ IETF wit httpbis - https://www.rfc-editor.org/errata/rfc7232 + https://www.rfc-editor.org/errata/rfc7232/ 10.17487/RFC7232 @@ -238599,7 +238599,7 @@ IETF wit httpbis - https://www.rfc-editor.org/errata/rfc7233 + https://www.rfc-editor.org/errata/rfc7233/ 10.17487/RFC7233 @@ -238644,7 +238644,7 @@ IETF wit httpbis - https://www.rfc-editor.org/errata/rfc7234 + https://www.rfc-editor.org/errata/rfc7234/ 10.17487/RFC7234 @@ -238686,7 +238686,7 @@ IETF wit httpbis - https://www.rfc-editor.org/errata/rfc7235 + https://www.rfc-editor.org/errata/rfc7235/ 10.17487/RFC7235 @@ -238812,7 +238812,7 @@ IETF app appsawg - https://www.rfc-editor.org/errata/rfc7239 + https://www.rfc-editor.org/errata/rfc7239/ 10.17487/RFC7239 @@ -238843,7 +238843,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc7240 + https://www.rfc-editor.org/errata/rfc7240/ 10.17487/RFC7240 @@ -238890,7 +238890,7 @@ INFORMATIONAL INFORMATIONAL IAB - https://www.rfc-editor.org/errata/rfc7241 + https://www.rfc-editor.org/errata/rfc7241/ 10.17487/RFC7241 @@ -239209,7 +239209,7 @@ IETF sec tls - https://www.rfc-editor.org/errata/rfc7250 + https://www.rfc-editor.org/errata/rfc7250/ 10.17487/RFC7250 @@ -239278,7 +239278,7 @@ IETF wit core - https://www.rfc-editor.org/errata/rfc7252 + https://www.rfc-editor.org/errata/rfc7252/ 10.17487/RFC7252 @@ -239351,7 +239351,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc7254 + https://www.rfc-editor.org/errata/rfc7254/ 10.17487/RFC7254 @@ -239454,7 +239454,7 @@ IETF rtg l2vpn - https://www.rfc-editor.org/errata/rfc7257 + https://www.rfc-editor.org/errata/rfc7257/ 10.17487/RFC7257 @@ -239558,7 +239558,7 @@ IETF rtg ccamp - https://www.rfc-editor.org/errata/rfc7260 + https://www.rfc-editor.org/errata/rfc7260/ 10.17487/RFC7260 @@ -239725,7 +239725,7 @@ IETF app jcardcal - https://www.rfc-editor.org/errata/rfc7265 + https://www.rfc-editor.org/errata/rfc7265/ 10.17487/RFC7265 @@ -239907,7 +239907,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc7270 + https://www.rfc-editor.org/errata/rfc7270/ 10.17487/RFC7270 @@ -240046,7 +240046,7 @@ IETF wit avtcore - https://www.rfc-editor.org/errata/rfc7273 + https://www.rfc-editor.org/errata/rfc7273/ 10.17487/RFC7273 @@ -240384,7 +240384,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc7282 + https://www.rfc-editor.org/errata/rfc7282/ 10.17487/RFC7282 @@ -240513,7 +240513,7 @@ IETF ops alto - https://www.rfc-editor.org/errata/rfc7285 + https://www.rfc-editor.org/errata/rfc7285/ 10.17487/RFC7285 @@ -240764,7 +240764,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc7292 + https://www.rfc-editor.org/errata/rfc7292/ 10.17487/RFC7292 @@ -240921,7 +240921,7 @@ IETF sec ipsecme - https://www.rfc-editor.org/errata/rfc7296 + https://www.rfc-editor.org/errata/rfc7296/ 10.17487/RFC7296 @@ -241088,7 +241088,7 @@ IETF sec tls - https://www.rfc-editor.org/errata/rfc7301 + https://www.rfc-editor.org/errata/rfc7301/ 10.17487/RFC7301 @@ -241161,7 +241161,7 @@ IETF app appsawg - https://www.rfc-editor.org/errata/rfc7303 + https://www.rfc-editor.org/errata/rfc7303/ 10.17487/RFC7303 @@ -241207,7 +241207,7 @@ INFORMATIONAL INFORMATIONAL IAB - https://www.rfc-editor.org/errata/rfc7305 + https://www.rfc-editor.org/errata/rfc7305/ 10.17487/RFC7305 @@ -241251,7 +241251,7 @@ IETF tsv storm - https://www.rfc-editor.org/errata/rfc7306 + https://www.rfc-editor.org/errata/rfc7306/ 10.17487/RFC7306 @@ -241298,7 +241298,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc7307 + https://www.rfc-editor.org/errata/rfc7307/ 10.17487/RFC7307 @@ -241573,7 +241573,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc7315 + https://www.rfc-editor.org/errata/rfc7315/ 10.17487/RFC7315 @@ -241639,7 +241639,7 @@ IETF ops netmod - https://www.rfc-editor.org/errata/rfc7317 + https://www.rfc-editor.org/errata/rfc7317/ 10.17487/RFC7317 @@ -241738,7 +241738,7 @@ IETF app appsawg - https://www.rfc-editor.org/errata/rfc7320 + https://www.rfc-editor.org/errata/rfc7320/ 10.17487/RFC7320 @@ -241809,7 +241809,7 @@ INFORMATIONAL INFORMATIONAL IAB - https://www.rfc-editor.org/errata/rfc7322 + https://www.rfc-editor.org/errata/rfc7322/ 10.17487/RFC7322 @@ -241856,7 +241856,7 @@ IETF wit tcpm - https://www.rfc-editor.org/errata/rfc7323 + https://www.rfc-editor.org/errata/rfc7323/ 10.17487/RFC7323 @@ -242093,7 +242093,7 @@ IETF rtg bfd - https://www.rfc-editor.org/errata/rfc7331 + https://www.rfc-editor.org/errata/rfc7331/ 10.17487/RFC7331 @@ -242121,7 +242121,7 @@ IETF rai straw - https://www.rfc-editor.org/errata/rfc7332 + https://www.rfc-editor.org/errata/rfc7332/ 10.17487/RFC7332 @@ -242571,7 +242571,7 @@ IETF ops dnsop - https://www.rfc-editor.org/errata/rfc7344 + https://www.rfc-editor.org/errata/rfc7344/ 10.17487/RFC7344 @@ -242644,7 +242644,7 @@ IETF int 6man - https://www.rfc-editor.org/errata/rfc7346 + https://www.rfc-editor.org/errata/rfc7346/ 10.17487/RFC7346 @@ -242728,7 +242728,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc7348 + https://www.rfc-editor.org/errata/rfc7348/ 10.17487/RFC7348 @@ -243156,7 +243156,7 @@ IETF rtg l2vpn - https://www.rfc-editor.org/errata/rfc7361 + https://www.rfc-editor.org/errata/rfc7361/ 10.17487/RFC7361 @@ -243328,7 +243328,7 @@ IETF sec tls - https://www.rfc-editor.org/errata/rfc7366 + https://www.rfc-editor.org/errata/rfc7366/ 10.17487/RFC7366 @@ -244018,7 +244018,7 @@ IETF app appsawg - https://www.rfc-editor.org/errata/rfc7386 + https://www.rfc-editor.org/errata/rfc7386/ 10.17487/RFC7386 @@ -244326,7 +244326,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc7394 + https://www.rfc-editor.org/errata/rfc7394/ 10.17487/RFC7394 @@ -244599,7 +244599,7 @@ IETF int hip - https://www.rfc-editor.org/errata/rfc7401 + https://www.rfc-editor.org/errata/rfc7401/ 10.17487/RFC7401 @@ -244694,7 +244694,7 @@ IETF ops opsec - https://www.rfc-editor.org/errata/rfc7404 + https://www.rfc-editor.org/errata/rfc7404/ 10.17487/RFC7404 @@ -244725,7 +244725,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc7405 + https://www.rfc-editor.org/errata/rfc7405/ 10.17487/RFC7405 @@ -244789,7 +244789,7 @@ IETF ops netmod - https://www.rfc-editor.org/errata/rfc7407 + https://www.rfc-editor.org/errata/rfc7407/ 10.17487/RFC7407 @@ -244822,7 +244822,7 @@ IETF rtg forces - https://www.rfc-editor.org/errata/rfc7408 + https://www.rfc-editor.org/errata/rfc7408/ 10.17487/RFC7408 @@ -245006,7 +245006,7 @@ IETF wit tcpm - https://www.rfc-editor.org/errata/rfc7413 + https://www.rfc-editor.org/errata/rfc7413/ 10.17487/RFC7413 @@ -245263,7 +245263,7 @@ IETF rtg pce - https://www.rfc-editor.org/errata/rfc7420 + https://www.rfc-editor.org/errata/rfc7420/ 10.17487/RFC7420 @@ -245304,7 +245304,7 @@ IETF int 6man - https://www.rfc-editor.org/errata/rfc7421 + https://www.rfc-editor.org/errata/rfc7421/ 10.17487/RFC7421 @@ -245339,7 +245339,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc7422 + https://www.rfc-editor.org/errata/rfc7422/ 10.17487/RFC7422 @@ -245485,7 +245485,7 @@ INFORMATIONAL INFORMATIONAL IRTF - https://www.rfc-editor.org/errata/rfc7426 + https://www.rfc-editor.org/errata/rfc7426/ 10.17487/RFC7426 @@ -245529,7 +245529,7 @@ IETF sec ipsecme - https://www.rfc-editor.org/errata/rfc7427 + https://www.rfc-editor.org/errata/rfc7427/ 10.17487/RFC7427 @@ -245643,7 +245643,7 @@ IETF tsv mptcp - https://www.rfc-editor.org/errata/rfc7430 + https://www.rfc-editor.org/errata/rfc7430/ 10.17487/RFC7430 @@ -245727,7 +245727,7 @@ IETF rtg l2vpn - https://www.rfc-editor.org/errata/rfc7432 + https://www.rfc-editor.org/errata/rfc7432/ 10.17487/RFC7432 @@ -245793,7 +245793,7 @@ IETF rai cuss - https://www.rfc-editor.org/errata/rfc7434 + https://www.rfc-editor.org/errata/rfc7434/ 10.17487/RFC7434 @@ -245979,7 +245979,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc7439 + https://www.rfc-editor.org/errata/rfc7439/ 10.17487/RFC7439 @@ -246624,7 +246624,7 @@ IETF sec uta - https://www.rfc-editor.org/errata/rfc7457 + https://www.rfc-editor.org/errata/rfc7457/ 10.17487/RFC7457 @@ -246846,7 +246846,7 @@ IETF rai bliss - https://www.rfc-editor.org/errata/rfc7463 + https://www.rfc-editor.org/errata/rfc7463/ 10.17487/RFC7463 @@ -246878,7 +246878,7 @@ IETF app json - https://www.rfc-editor.org/errata/rfc7464 + https://www.rfc-editor.org/errata/rfc7464/ 10.17487/RFC7464 @@ -247001,7 +247001,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc7468 + https://www.rfc-editor.org/errata/rfc7468/ 10.17487/RFC7468 @@ -247035,7 +247035,7 @@ IETF app websec - https://www.rfc-editor.org/errata/rfc7469 + https://www.rfc-editor.org/errata/rfc7469/ 10.17487/RFC7469 @@ -247304,7 +247304,7 @@ IETF ops dnsop - https://www.rfc-editor.org/errata/rfc7477 + https://www.rfc-editor.org/errata/rfc7477/ 10.17487/RFC7477 @@ -247364,7 +247364,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc7479 + https://www.rfc-editor.org/errata/rfc7479/ 10.17487/RFC7479 @@ -247469,7 +247469,7 @@ IETF app weirds - https://www.rfc-editor.org/errata/rfc7482 + https://www.rfc-editor.org/errata/rfc7482/ 10.17487/RFC7482 @@ -247503,7 +247503,7 @@ IETF app weirds - https://www.rfc-editor.org/errata/rfc7483 + https://www.rfc-editor.org/errata/rfc7483/ 10.17487/RFC7483 @@ -247543,7 +247543,7 @@ IETF app weirds - https://www.rfc-editor.org/errata/rfc7484 + https://www.rfc-editor.org/errata/rfc7484/ 10.17487/RFC7484 @@ -247755,7 +247755,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc7489 + https://www.rfc-editor.org/errata/rfc7489/ 10.17487/RFC7489 @@ -247890,7 +247890,7 @@ IETF app json - https://www.rfc-editor.org/errata/rfc7493 + https://www.rfc-editor.org/errata/rfc7493/ 10.17487/RFC7493 @@ -248065,7 +248065,7 @@ IETF rtg sfc - https://www.rfc-editor.org/errata/rfc7498 + https://www.rfc-editor.org/errata/rfc7498/ 10.17487/RFC7498 @@ -248400,7 +248400,7 @@ EXPERIMENTAL EXPERIMENTAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc7508 + https://www.rfc-editor.org/errata/rfc7508/ 10.17487/RFC7508 @@ -248473,7 +248473,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc7510 + https://www.rfc-editor.org/errata/rfc7510/ 10.17487/RFC7510 @@ -248500,7 +248500,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc7511 + https://www.rfc-editor.org/errata/rfc7511/ 10.17487/RFC7511 @@ -248532,7 +248532,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc7512 + https://www.rfc-editor.org/errata/rfc7512/ 10.17487/RFC7512 @@ -248636,7 +248636,7 @@ IETF sec jose - https://www.rfc-editor.org/errata/rfc7515 + https://www.rfc-editor.org/errata/rfc7515/ 10.17487/RFC7515 @@ -248678,7 +248678,7 @@ IETF sec jose - https://www.rfc-editor.org/errata/rfc7516 + https://www.rfc-editor.org/errata/rfc7516/ 10.17487/RFC7516 @@ -248717,7 +248717,7 @@ IETF sec jose - https://www.rfc-editor.org/errata/rfc7517 + https://www.rfc-editor.org/errata/rfc7517/ 10.17487/RFC7517 @@ -248742,7 +248742,7 @@ IETF sec jose - https://www.rfc-editor.org/errata/rfc7518 + https://www.rfc-editor.org/errata/rfc7518/ 10.17487/RFC7518 @@ -248796,7 +248796,7 @@ IETF sec oauth - https://www.rfc-editor.org/errata/rfc7519 + https://www.rfc-editor.org/errata/rfc7519/ 10.17487/RFC7519 @@ -248836,7 +248836,7 @@ IETF sec jose - https://www.rfc-editor.org/errata/rfc7520 + https://www.rfc-editor.org/errata/rfc7520/ 10.17487/RFC7520 @@ -249036,7 +249036,7 @@ IETF sec uta - https://www.rfc-editor.org/errata/rfc7525 + https://www.rfc-editor.org/errata/rfc7525/ 10.17487/RFC7525 @@ -249220,7 +249220,7 @@ IETF wit nfsv4 - https://www.rfc-editor.org/errata/rfc7530 + https://www.rfc-editor.org/errata/rfc7530/ 10.17487/RFC7530 @@ -249541,7 +249541,7 @@ INFORMATIONAL INFORMATIONAL IRTF - https://www.rfc-editor.org/errata/rfc7539 + https://www.rfc-editor.org/errata/rfc7539/ 10.17487/RFC7539 @@ -249584,7 +249584,7 @@ IETF wit httpbis - https://www.rfc-editor.org/errata/rfc7540 + https://www.rfc-editor.org/errata/rfc7540/ 10.17487/RFC7540 @@ -249616,7 +249616,7 @@ IETF wit httpbis - https://www.rfc-editor.org/errata/rfc7541 + https://www.rfc-editor.org/errata/rfc7541/ 10.17487/RFC7541 @@ -249644,7 +249644,7 @@ IETF sec radext - https://www.rfc-editor.org/errata/rfc7542 + https://www.rfc-editor.org/errata/rfc7542/ 10.17487/RFC7542 @@ -249685,7 +249685,7 @@ IETF rtg bess - https://www.rfc-editor.org/errata/rfc7543 + https://www.rfc-editor.org/errata/rfc7543/ 10.17487/RFC7543 @@ -249715,7 +249715,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc7544 + https://www.rfc-editor.org/errata/rfc7544/ 10.17487/RFC7544 @@ -250115,7 +250115,7 @@ IETF int 6tisch - https://www.rfc-editor.org/errata/rfc7554 + https://www.rfc-editor.org/errata/rfc7554/ 10.17487/RFC7554 @@ -250146,7 +250146,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc7555 + https://www.rfc-editor.org/errata/rfc7555/ 10.17487/RFC7555 @@ -250172,7 +250172,7 @@ IETF int mif - https://www.rfc-editor.org/errata/rfc7556 + https://www.rfc-editor.org/errata/rfc7556/ 10.17487/RFC7556 @@ -250452,7 +250452,7 @@ IETF app precis - https://www.rfc-editor.org/errata/rfc7564 + https://www.rfc-editor.org/errata/rfc7564/ 10.17487/RFC7564 @@ -250481,7 +250481,7 @@ IETF app appsawg - https://www.rfc-editor.org/errata/rfc7565 + https://www.rfc-editor.org/errata/rfc7565/ 10.17487/RFC7565 @@ -250546,7 +250546,7 @@ IETF tsv aqm - https://www.rfc-editor.org/errata/rfc7567 + https://www.rfc-editor.org/errata/rfc7567/ 10.17487/RFC7567 @@ -250592,7 +250592,7 @@ IETF sec tls - https://www.rfc-editor.org/errata/rfc7568 + https://www.rfc-editor.org/errata/rfc7568/ 10.17487/RFC7568 @@ -250810,7 +250810,7 @@ IETF tsv ppsp - https://www.rfc-editor.org/errata/rfc7574 + https://www.rfc-editor.org/errata/rfc7574/ 10.17487/RFC7574 @@ -250956,7 +250956,7 @@ IETF art appsawg - https://www.rfc-editor.org/errata/rfc7578 + https://www.rfc-editor.org/errata/rfc7578/ 10.17487/RFC7578 @@ -251190,7 +251190,7 @@ IETF art straw - https://www.rfc-editor.org/errata/rfc7584 + https://www.rfc-editor.org/errata/rfc7584/ 10.17487/RFC7584 @@ -251225,7 +251225,7 @@ IETF sec radext - https://www.rfc-editor.org/errata/rfc7585 + https://www.rfc-editor.org/errata/rfc7585/ 10.17487/RFC7585 @@ -251367,7 +251367,7 @@ IETF ops netconf - https://www.rfc-editor.org/errata/rfc7589 + https://www.rfc-editor.org/errata/rfc7589/ 10.17487/RFC7589 @@ -251458,7 +251458,7 @@ IETF sec oauth - https://www.rfc-editor.org/errata/rfc7591 + https://www.rfc-editor.org/errata/rfc7591/ 10.17487/RFC7591 @@ -251530,7 +251530,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc7593 + https://www.rfc-editor.org/errata/rfc7593/ 10.17487/RFC7593 @@ -251626,7 +251626,7 @@ IETF art appsawg - https://www.rfc-editor.org/errata/rfc7595 + https://www.rfc-editor.org/errata/rfc7595/ 10.17487/RFC7595 @@ -251771,7 +251771,7 @@ IETF int softwire - https://www.rfc-editor.org/errata/rfc7598 + https://www.rfc-editor.org/errata/rfc7598/ 10.17487/RFC7598 @@ -251812,7 +251812,7 @@ IETF int softwire - https://www.rfc-editor.org/errata/rfc7599 + https://www.rfc-editor.org/errata/rfc7599/ 10.17487/RFC7599 @@ -251865,7 +251865,7 @@ IETF int softwire - https://www.rfc-editor.org/errata/rfc7600 + https://www.rfc-editor.org/errata/rfc7600/ 10.17487/RFC7600 @@ -251908,7 +251908,7 @@ IETF art appsawg - https://www.rfc-editor.org/errata/rfc7601 + https://www.rfc-editor.org/errata/rfc7601/ 10.17487/RFC7601 @@ -252041,7 +252041,7 @@ IETF wit tsvwg - https://www.rfc-editor.org/errata/rfc7605 + https://www.rfc-editor.org/errata/rfc7605/ 10.17487/RFC7605 @@ -252090,7 +252090,7 @@ IETF rtg idr - https://www.rfc-editor.org/errata/rfc7606 + https://www.rfc-editor.org/errata/rfc7606/ 10.17487/RFC7606 @@ -252133,7 +252133,7 @@ IETF rtg idr - https://www.rfc-editor.org/errata/rfc7607 + https://www.rfc-editor.org/errata/rfc7607/ 10.17487/RFC7607 @@ -252458,7 +252458,7 @@ IETF sec httpauth - https://www.rfc-editor.org/errata/rfc7616 + https://www.rfc-editor.org/errata/rfc7616/ 10.17487/RFC7616 @@ -252679,7 +252679,7 @@ IETF art xmpp - https://www.rfc-editor.org/errata/rfc7622 + https://www.rfc-editor.org/errata/rfc7622/ 10.17487/RFC7622 @@ -252975,7 +252975,7 @@ IETF ops opsawg - https://www.rfc-editor.org/errata/rfc7630 + https://www.rfc-editor.org/errata/rfc7630/ 10.17487/RFC7630 @@ -253082,7 +253082,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc7633 + https://www.rfc-editor.org/errata/rfc7633/ 10.17487/RFC7633 @@ -253115,7 +253115,7 @@ IETF sec ipsecme - https://www.rfc-editor.org/errata/rfc7634 + https://www.rfc-editor.org/errata/rfc7634/ 10.17487/RFC7634 @@ -253156,7 +253156,7 @@ IETF tsv tram - https://www.rfc-editor.org/errata/rfc7635 + https://www.rfc-editor.org/errata/rfc7635/ 10.17487/RFC7635 @@ -253205,7 +253205,7 @@ IETF sec oauth - https://www.rfc-editor.org/errata/rfc7636 + https://www.rfc-editor.org/errata/rfc7636/ 10.17487/RFC7636 @@ -253405,7 +253405,7 @@ IETF sec scim - https://www.rfc-editor.org/errata/rfc7642 + https://www.rfc-editor.org/errata/rfc7642/ 10.17487/RFC7642 @@ -253446,7 +253446,7 @@ IETF sec scim - https://www.rfc-editor.org/errata/rfc7643 + https://www.rfc-editor.org/errata/rfc7643/ 10.17487/RFC7643 @@ -253487,7 +253487,7 @@ IETF sec scim - https://www.rfc-editor.org/errata/rfc7644 + https://www.rfc-editor.org/errata/rfc7644/ 10.17487/RFC7644 @@ -253791,7 +253791,7 @@ IETF int pcp - https://www.rfc-editor.org/errata/rfc7652 + https://www.rfc-editor.org/errata/rfc7652/ 10.17487/RFC7652 @@ -253951,7 +253951,7 @@ IETF art avtext - https://www.rfc-editor.org/errata/rfc7656 + https://www.rfc-editor.org/errata/rfc7656/ 10.17487/RFC7656 @@ -254067,7 +254067,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc7659 + https://www.rfc-editor.org/errata/rfc7659/ 10.17487/RFC7659 @@ -254169,7 +254169,7 @@ IETF sec oauth - https://www.rfc-editor.org/errata/rfc7662 + https://www.rfc-editor.org/errata/rfc7662/ 10.17487/RFC7662 @@ -254233,7 +254233,7 @@ INFORMATIONAL INFORMATIONAL IRTF - https://www.rfc-editor.org/errata/rfc7664 + https://www.rfc-editor.org/errata/rfc7664/ 10.17487/RFC7664 @@ -254263,7 +254263,7 @@ IETF rtg sfc - https://www.rfc-editor.org/errata/rfc7665 + https://www.rfc-editor.org/errata/rfc7665/ 10.17487/RFC7665 @@ -254307,7 +254307,7 @@ IETF ops opsawg - https://www.rfc-editor.org/errata/rfc7666 + https://www.rfc-editor.org/errata/rfc7666/ 10.17487/RFC7666 @@ -254350,7 +254350,7 @@ IETF wit avtcore - https://www.rfc-editor.org/errata/rfc7667 + https://www.rfc-editor.org/errata/rfc7667/ 10.17487/RFC7667 @@ -254519,7 +254519,7 @@ IETF sec dane - https://www.rfc-editor.org/errata/rfc7672 + https://www.rfc-editor.org/errata/rfc7672/ 10.17487/RFC7672 @@ -254776,7 +254776,7 @@ IETF ops ippm - https://www.rfc-editor.org/errata/rfc7679 + https://www.rfc-editor.org/errata/rfc7679/ 10.17487/RFC7679 @@ -254935,7 +254935,7 @@ IETF ops dime - https://www.rfc-editor.org/errata/rfc7683 + https://www.rfc-editor.org/errata/rfc7683/ 10.17487/RFC7683 @@ -254981,7 +254981,7 @@ IETF rtg ospf - https://www.rfc-editor.org/errata/rfc7684 + https://www.rfc-editor.org/errata/rfc7684/ 10.17487/RFC7684 @@ -255036,7 +255036,7 @@ IETF ops dnsop - https://www.rfc-editor.org/errata/rfc7686 + https://www.rfc-editor.org/errata/rfc7686/ 10.17487/RFC7686 @@ -255239,7 +255239,7 @@ IETF art hybi - https://www.rfc-editor.org/errata/rfc7692 + https://www.rfc-editor.org/errata/rfc7692/ 10.17487/RFC7692 @@ -255364,7 +255364,7 @@ BEST CURRENT PRACTICE IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc7696 + https://www.rfc-editor.org/errata/rfc7696/ 10.17487/RFC7696 @@ -255407,7 +255407,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc7697 + https://www.rfc-editor.org/errata/rfc7697/ 10.17487/RFC7697 @@ -255531,7 +255531,7 @@ IETF art precis - https://www.rfc-editor.org/errata/rfc7700 + https://www.rfc-editor.org/errata/rfc7700/ 10.17487/RFC7700 @@ -255735,7 +255735,7 @@ IETF ops dnsop - https://www.rfc-editor.org/errata/rfc7706 + https://www.rfc-editor.org/errata/rfc7706/ 10.17487/RFC7706 @@ -255766,7 +255766,7 @@ IETF ops opsec - https://www.rfc-editor.org/errata/rfc7707 + https://www.rfc-editor.org/errata/rfc7707/ 10.17487/RFC7707 @@ -255914,7 +255914,7 @@ IETF art xmpp - https://www.rfc-editor.org/errata/rfc7711 + https://www.rfc-editor.org/errata/rfc7711/ 10.17487/RFC7711 @@ -256017,7 +256017,7 @@ IETF wit avtcore - https://www.rfc-editor.org/errata/rfc7714 + https://www.rfc-editor.org/errata/rfc7714/ 10.17487/RFC7714 @@ -256190,7 +256190,7 @@ IETF ops dnsop - https://www.rfc-editor.org/errata/rfc7719 + https://www.rfc-editor.org/errata/rfc7719/ 10.17487/RFC7719 @@ -256383,7 +256383,7 @@ IETF wit httpbis - https://www.rfc-editor.org/errata/rfc7725 + https://www.rfc-editor.org/errata/rfc7725/ 10.17487/RFC7725 @@ -256508,7 +256508,7 @@ IETF art avtext - https://www.rfc-editor.org/errata/rfc7728 + https://www.rfc-editor.org/errata/rfc7728/ 10.17487/RFC7728 @@ -256545,7 +256545,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc7729 + https://www.rfc-editor.org/errata/rfc7729/ 10.17487/RFC7729 @@ -257224,7 +257224,7 @@ INFORMATIONAL INFORMATIONAL IRTF - https://www.rfc-editor.org/errata/rfc7748 + https://www.rfc-editor.org/errata/rfc7748/ 10.17487/RFC7748 @@ -257260,7 +257260,7 @@ INFORMATIONAL INFORMATIONAL IAB - https://www.rfc-editor.org/errata/rfc7749 + https://www.rfc-editor.org/errata/rfc7749/ 10.17487/RFC7749 @@ -257385,7 +257385,7 @@ IETF rtg idr - https://www.rfc-editor.org/errata/rfc7752 + https://www.rfc-editor.org/errata/rfc7752/ 10.17487/RFC7752 @@ -257755,7 +257755,7 @@ IETF rtg pim - https://www.rfc-editor.org/errata/rfc7761 + https://www.rfc-editor.org/errata/rfc7761/ 10.17487/RFC7761 @@ -258083,7 +258083,7 @@ IETF rtg ospf - https://www.rfc-editor.org/errata/rfc7770 + https://www.rfc-editor.org/errata/rfc7770/ 10.17487/RFC7770 @@ -258215,7 +258215,7 @@ IETF rtg roll - https://www.rfc-editor.org/errata/rfc7774 + https://www.rfc-editor.org/errata/rfc7774/ 10.17487/RFC7774 @@ -258765,7 +258765,7 @@ IETF int homenet - https://www.rfc-editor.org/errata/rfc7788 + https://www.rfc-editor.org/errata/rfc7788/ 10.17487/RFC7788 @@ -259188,7 +259188,7 @@ IETF sec oauth - https://www.rfc-editor.org/errata/rfc7800 + https://www.rfc-editor.org/errata/rfc7800/ 10.17487/RFC7800 @@ -259216,7 +259216,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc7801 + https://www.rfc-editor.org/errata/rfc7801/ 10.17487/RFC7801 @@ -259309,7 +259309,7 @@ IETF sec httpauth - https://www.rfc-editor.org/errata/rfc7804 + https://www.rfc-editor.org/errata/rfc7804/ 10.17487/RFC7804 @@ -259420,7 +259420,7 @@ IETF art appsawg - https://www.rfc-editor.org/errata/rfc7807 + https://www.rfc-editor.org/errata/rfc7807/ 10.17487/RFC7807 @@ -259526,7 +259526,7 @@ IETF rtg isis - https://www.rfc-editor.org/errata/rfc7810 + https://www.rfc-editor.org/errata/rfc7810/ 10.17487/RFC7810 @@ -259751,7 +259751,7 @@ IETF ops dnsop - https://www.rfc-editor.org/errata/rfc7816 + https://www.rfc-editor.org/errata/rfc7816/ 10.17487/RFC7816 @@ -260469,7 +260469,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc7836 + https://www.rfc-editor.org/errata/rfc7836/ 10.17487/RFC7836 @@ -260548,7 +260548,7 @@ IETF wit httpbis - https://www.rfc-editor.org/errata/rfc7838 + https://www.rfc-editor.org/errata/rfc7838/ 10.17487/RFC7838 @@ -260598,7 +260598,7 @@ IETF int dhc - https://www.rfc-editor.org/errata/rfc7839 + https://www.rfc-editor.org/errata/rfc7839/ 10.17487/RFC7839 @@ -260677,7 +260677,7 @@ INFORMATIONAL INFORMATIONAL IAB - https://www.rfc-editor.org/errata/rfc7841 + https://www.rfc-editor.org/errata/rfc7841/ 10.17487/RFC7841 @@ -260701,7 +260701,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc7842 + https://www.rfc-editor.org/errata/rfc7842/ 10.17487/RFC7842 @@ -260940,7 +260940,7 @@ IETF art eppext - https://www.rfc-editor.org/errata/rfc7848 + https://www.rfc-editor.org/errata/rfc7848/ 10.17487/RFC7848 @@ -261001,7 +261001,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc7849 + https://www.rfc-editor.org/errata/rfc7849/ 10.17487/RFC7849 @@ -261114,7 +261114,7 @@ IETF art ecrit - https://www.rfc-editor.org/errata/rfc7852 + https://www.rfc-editor.org/errata/rfc7852/ 10.17487/RFC7852 @@ -261189,7 +261189,7 @@ IETF ops grow - https://www.rfc-editor.org/errata/rfc7854 + https://www.rfc-editor.org/errata/rfc7854/ 10.17487/RFC7854 @@ -261231,7 +261231,7 @@ IETF rtg spring - https://www.rfc-editor.org/errata/rfc7855 + https://www.rfc-editor.org/errata/rfc7855/ 10.17487/RFC7855 @@ -261379,7 +261379,7 @@ IETF int dprive - https://www.rfc-editor.org/errata/rfc7858 + https://www.rfc-editor.org/errata/rfc7858/ 10.17487/RFC7858 @@ -261533,7 +261533,7 @@ IETF wit nfsv4 - https://www.rfc-editor.org/errata/rfc7862 + https://www.rfc-editor.org/errata/rfc7862/ 10.17487/RFC7862 @@ -261667,7 +261667,7 @@ IETF art siprec - https://www.rfc-editor.org/errata/rfc7866 + https://www.rfc-editor.org/errata/rfc7866/ 10.17487/RFC7866 @@ -261729,7 +261729,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc7868 + https://www.rfc-editor.org/errata/rfc7868/ 10.17487/RFC7868 @@ -261839,7 +261839,7 @@ IETF ops dnsop - https://www.rfc-editor.org/errata/rfc7871 + https://www.rfc-editor.org/errata/rfc7871/ 10.17487/RFC7871 @@ -261876,7 +261876,7 @@ IETF ops v6ops - https://www.rfc-editor.org/errata/rfc7872 + https://www.rfc-editor.org/errata/rfc7872/ 10.17487/RFC7872 @@ -262174,7 +262174,7 @@ IETF rtg bfd - https://www.rfc-editor.org/errata/rfc7880 + https://www.rfc-editor.org/errata/rfc7880/ 10.17487/RFC7880 @@ -262489,7 +262489,7 @@ IETF art imapapnd - https://www.rfc-editor.org/errata/rfc7889 + https://www.rfc-editor.org/errata/rfc7889/ 10.17487/RFC7889 @@ -262948,7 +262948,7 @@ IETF ops dnsop - https://www.rfc-editor.org/errata/rfc7901 + https://www.rfc-editor.org/errata/rfc7901/ 10.17487/RFC7901 @@ -263096,7 +263096,7 @@ IETF sec tls - https://www.rfc-editor.org/errata/rfc7905 + https://www.rfc-editor.org/errata/rfc7905/ 10.17487/RFC7905 @@ -263125,7 +263125,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc7906 + https://www.rfc-editor.org/errata/rfc7906/ 10.17487/RFC7906 @@ -263324,7 +263324,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc7913 + https://www.rfc-editor.org/errata/rfc7913/ 10.17487/RFC7913 @@ -263354,7 +263354,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc7914 + https://www.rfc-editor.org/errata/rfc7914/ 10.17487/RFC7914 @@ -263404,7 +263404,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc7915 + https://www.rfc-editor.org/errata/rfc7915/ 10.17487/RFC7915 @@ -263564,7 +263564,7 @@ IETF sec tls - https://www.rfc-editor.org/errata/rfc7919 + https://www.rfc-editor.org/errata/rfc7919/ 10.17487/RFC7919 @@ -263933,7 +263933,7 @@ IETF sec dane - https://www.rfc-editor.org/errata/rfc7929 + https://www.rfc-editor.org/errata/rfc7929/ 10.17487/RFC7929 @@ -264001,7 +264001,7 @@ IETF wit nfsv4 - https://www.rfc-editor.org/errata/rfc7931 + https://www.rfc-editor.org/errata/rfc7931/ 10.17487/RFC7931 @@ -264028,7 +264028,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc7932 + https://www.rfc-editor.org/errata/rfc7932/ 10.17487/RFC7932 @@ -264145,7 +264145,7 @@ IETF ops v6ops - https://www.rfc-editor.org/errata/rfc7934 + https://www.rfc-editor.org/errata/rfc7934/ 10.17487/RFC7934 @@ -264181,7 +264181,7 @@ IETF rtg sidr - https://www.rfc-editor.org/errata/rfc7935 + https://www.rfc-editor.org/errata/rfc7935/ 10.17487/RFC7935 @@ -264286,7 +264286,7 @@ IETF rtg rtgwg - https://www.rfc-editor.org/errata/rfc7938 + https://www.rfc-editor.org/errata/rfc7938/ 10.17487/RFC7938 @@ -264366,7 +264366,7 @@ IETF art lager - https://www.rfc-editor.org/errata/rfc7940 + https://www.rfc-editor.org/errata/rfc7940/ 10.17487/RFC7940 @@ -264532,7 +264532,7 @@ INFORMATIONAL INFORMATIONAL IRTF - https://www.rfc-editor.org/errata/rfc7945 + https://www.rfc-editor.org/errata/rfc7945/ 10.17487/RFC7945 @@ -264577,7 +264577,7 @@ IETF art geojson - https://www.rfc-editor.org/errata/rfc7946 + https://www.rfc-editor.org/errata/rfc7946/ 10.17487/RFC7946 @@ -264650,7 +264650,7 @@ IETF ops grow - https://www.rfc-editor.org/errata/rfc7948 + https://www.rfc-editor.org/errata/rfc7948/ 10.17487/RFC7948 @@ -264722,7 +264722,7 @@ IETF ops netmod - https://www.rfc-editor.org/errata/rfc7950 + https://www.rfc-editor.org/errata/rfc7950/ 10.17487/RFC7950 @@ -264751,7 +264751,7 @@ IETF ops netmod - https://www.rfc-editor.org/errata/rfc7951 + https://www.rfc-editor.org/errata/rfc7951/ 10.17487/RFC7951 @@ -264822,7 +264822,7 @@ IETF art calext - https://www.rfc-editor.org/errata/rfc7953 + https://www.rfc-editor.org/errata/rfc7953/ 10.17487/RFC7953 @@ -265008,7 +265008,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc7958 + https://www.rfc-editor.org/errata/rfc7958/ 10.17487/RFC7958 @@ -265053,7 +265053,7 @@ IETF wit core - https://www.rfc-editor.org/errata/rfc7959 + https://www.rfc-editor.org/errata/rfc7959/ 10.17487/RFC7959 @@ -265477,7 +265477,7 @@ IETF sec mile - https://www.rfc-editor.org/errata/rfc7970 + https://www.rfc-editor.org/errata/rfc7970/ 10.17487/RFC7970 @@ -265682,7 +265682,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc7976 + https://www.rfc-editor.org/errata/rfc7976/ 10.17487/RFC7976 @@ -266060,7 +266060,7 @@ IETF art calext - https://www.rfc-editor.org/errata/rfc7986 + https://www.rfc-editor.org/errata/rfc7986/ 10.17487/RFC7986 @@ -266235,7 +266235,7 @@ INFORMATIONAL INFORMATIONAL IAB - https://www.rfc-editor.org/errata/rfc7991 + https://www.rfc-editor.org/errata/rfc7991/ 10.17487/RFC7991 @@ -266391,7 +266391,7 @@ INFORMATIONAL INFORMATIONAL IAB - https://www.rfc-editor.org/errata/rfc7996 + https://www.rfc-editor.org/errata/rfc7996/ 10.17487/RFC7996 @@ -266428,7 +266428,7 @@ INFORMATIONAL INFORMATIONAL IAB - https://www.rfc-editor.org/errata/rfc7997 + https://www.rfc-editor.org/errata/rfc7997/ 10.17487/RFC7997 @@ -266459,7 +266459,7 @@ INFORMATIONAL INFORMATIONAL IAB - https://www.rfc-editor.org/errata/rfc7998 + https://www.rfc-editor.org/errata/rfc7998/ 10.17487/RFC7998 @@ -266773,7 +266773,7 @@ IETF wit cdni - https://www.rfc-editor.org/errata/rfc8006 + https://www.rfc-editor.org/errata/rfc8006/ 10.17487/RFC8006 @@ -266807,7 +266807,7 @@ IETF wit cdni - https://www.rfc-editor.org/errata/rfc8007 + https://www.rfc-editor.org/errata/rfc8007/ 10.17487/RFC8007 @@ -266961,7 +266961,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc8011 + https://www.rfc-editor.org/errata/rfc8011/ 10.17487/RFC8011 @@ -267036,7 +267036,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc8013 + https://www.rfc-editor.org/errata/rfc8013/ 10.17487/RFC8013 @@ -267150,7 +267150,7 @@ IETF tsv tram - https://www.rfc-editor.org/errata/rfc8016 + https://www.rfc-editor.org/errata/rfc8016/ 10.17487/RFC8016 @@ -267198,7 +267198,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc8017 + https://www.rfc-editor.org/errata/rfc8017/ 10.17487/RFC8017 @@ -267240,7 +267240,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc8018 + https://www.rfc-editor.org/errata/rfc8018/ 10.17487/RFC8018 @@ -267305,7 +267305,7 @@ IETF ops dnsop - https://www.rfc-editor.org/errata/rfc8020 + https://www.rfc-editor.org/errata/rfc8020/ 10.17487/RFC8020 @@ -267558,7 +267558,7 @@ IETF ops dnsop - https://www.rfc-editor.org/errata/rfc8027 + https://www.rfc-editor.org/errata/rfc8027/ 10.17487/RFC8027 @@ -267589,7 +267589,7 @@ IETF int 6man - https://www.rfc-editor.org/errata/rfc8028 + https://www.rfc-editor.org/errata/rfc8028/ 10.17487/RFC8028 @@ -267648,7 +267648,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc8029 + https://www.rfc-editor.org/errata/rfc8029/ 10.17487/RFC8029 @@ -267719,7 +267719,7 @@ IETF sec ipsecme - https://www.rfc-editor.org/errata/rfc8031 + https://www.rfc-editor.org/errata/rfc8031/ 10.17487/RFC8031 @@ -267750,7 +267750,7 @@ INFORMATIONAL INFORMATIONAL IRTF - https://www.rfc-editor.org/errata/rfc8032 + https://www.rfc-editor.org/errata/rfc8032/ 10.17487/RFC8032 @@ -267788,7 +267788,7 @@ IETF tsv aqm - https://www.rfc-editor.org/errata/rfc8033 + https://www.rfc-editor.org/errata/rfc8033/ 10.17487/RFC8033 @@ -267926,7 +267926,7 @@ IETF sec jose - https://www.rfc-editor.org/errata/rfc8037 + https://www.rfc-editor.org/errata/rfc8037/ 10.17487/RFC8037 @@ -268046,7 +268046,7 @@ IETF ops netconf - https://www.rfc-editor.org/errata/rfc8040 + https://www.rfc-editor.org/errata/rfc8040/ 10.17487/RFC8040 @@ -268243,7 +268243,7 @@ IETF sec radext - https://www.rfc-editor.org/errata/rfc8045 + https://www.rfc-editor.org/errata/rfc8045/ 10.17487/RFC8045 @@ -268679,7 +268679,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc8058 + https://www.rfc-editor.org/errata/rfc8058/ 10.17487/RFC8058 @@ -268713,7 +268713,7 @@ IETF rtg pim - https://www.rfc-editor.org/errata/rfc8059 + https://www.rfc-editor.org/errata/rfc8059/ 10.17487/RFC8059 @@ -268750,7 +268750,7 @@ IETF rtg lisp - https://www.rfc-editor.org/errata/rfc8060 + https://www.rfc-editor.org/errata/rfc8060/ 10.17487/RFC8060 @@ -269150,7 +269150,7 @@ IETF ops netconf - https://www.rfc-editor.org/errata/rfc8072 + https://www.rfc-editor.org/errata/rfc8072/ 10.17487/RFC8072 @@ -269337,7 +269337,7 @@ IETF rtg pals - https://www.rfc-editor.org/errata/rfc8077 + https://www.rfc-editor.org/errata/rfc8077/ 10.17487/RFC8077 @@ -269375,7 +269375,7 @@ IETF ops dnsop - https://www.rfc-editor.org/errata/rfc8078 + https://www.rfc-editor.org/errata/rfc8078/ 10.17487/RFC8078 @@ -269439,7 +269439,7 @@ IETF sec curdle - https://www.rfc-editor.org/errata/rfc8080 + https://www.rfc-editor.org/errata/rfc8080/ 10.17487/RFC8080 @@ -269619,7 +269619,7 @@ IETF wit tsvwg - https://www.rfc-editor.org/errata/rfc8085 + https://www.rfc-editor.org/errata/rfc8085/ 10.17487/RFC8085 @@ -269654,7 +269654,7 @@ IETF wit tsvwg - https://www.rfc-editor.org/errata/rfc8086 + https://www.rfc-editor.org/errata/rfc8086/ 10.17487/RFC8086 @@ -269688,7 +269688,7 @@ IETF tsv aqm - https://www.rfc-editor.org/errata/rfc8087 + https://www.rfc-editor.org/errata/rfc8087/ 10.17487/RFC8087 @@ -269752,7 +269752,7 @@ IETF art appsawg - https://www.rfc-editor.org/errata/rfc8089 + https://www.rfc-editor.org/errata/rfc8089/ 10.17487/RFC8089 @@ -269842,7 +269842,7 @@ IETF rtg idr - https://www.rfc-editor.org/errata/rfc8092 + https://www.rfc-editor.org/errata/rfc8092/ 10.17487/RFC8092 @@ -269946,7 +269946,7 @@ IETF wit taps - https://www.rfc-editor.org/errata/rfc8095 + https://www.rfc-editor.org/errata/rfc8095/ 10.17487/RFC8095 @@ -270233,7 +270233,7 @@ IETF sec curdle - https://www.rfc-editor.org/errata/rfc8103 + https://www.rfc-editor.org/errata/rfc8103/ 10.17487/RFC8103 @@ -270487,7 +270487,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc8110 + https://www.rfc-editor.org/errata/rfc8110/ 10.17487/RFC8110 @@ -270984,7 +270984,7 @@ IETF art mmusic - https://www.rfc-editor.org/errata/rfc8122 + https://www.rfc-editor.org/errata/rfc8122/ 10.17487/RFC8122 @@ -271121,7 +271121,7 @@ BEST CURRENT PRACTICE IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc8126 + https://www.rfc-editor.org/errata/rfc8126/ 10.17487/RFC8126 @@ -271430,7 +271430,7 @@ EXPERIMENTAL EXPERIMENTAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc8135 + https://www.rfc-editor.org/errata/rfc8135/ 10.17487/RFC8135 @@ -271524,7 +271524,7 @@ IETF rtg roll - https://www.rfc-editor.org/errata/rfc8138 + https://www.rfc-editor.org/errata/rfc8138/ 10.17487/RFC8138 @@ -271599,7 +271599,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc8140 + https://www.rfc-editor.org/errata/rfc8140/ 10.17487/RFC8140 @@ -271801,7 +271801,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc8146 + https://www.rfc-editor.org/errata/rfc8146/ 10.17487/RFC8146 @@ -271845,7 +271845,7 @@ IETF art ecrit - https://www.rfc-editor.org/errata/rfc8147 + https://www.rfc-editor.org/errata/rfc8147/ 10.17487/RFC8147 @@ -271893,7 +271893,7 @@ IETF art ecrit - https://www.rfc-editor.org/errata/rfc8148 + https://www.rfc-editor.org/errata/rfc8148/ 10.17487/RFC8148 @@ -272051,7 +272051,7 @@ IETF sec cose - https://www.rfc-editor.org/errata/rfc8152 + https://www.rfc-editor.org/errata/rfc8152/ 10.17487/RFC8152 @@ -272371,7 +272371,7 @@ IETF sec dane - https://www.rfc-editor.org/errata/rfc8162 + https://www.rfc-editor.org/errata/rfc8162/ 10.17487/RFC8162 @@ -272406,7 +272406,7 @@ IETF int 6lo - https://www.rfc-editor.org/errata/rfc8163 + https://www.rfc-editor.org/errata/rfc8163/ 10.17487/RFC8163 @@ -272438,7 +272438,7 @@ IETF wit httpbis - https://www.rfc-editor.org/errata/rfc8164 + https://www.rfc-editor.org/errata/rfc8164/ 10.17487/RFC8164 @@ -272508,7 +272508,7 @@ IETF wit nfsv4 - https://www.rfc-editor.org/errata/rfc8166 + https://www.rfc-editor.org/errata/rfc8166/ 10.17487/RFC8166 @@ -272772,7 +272772,7 @@ BEST CURRENT PRACTICE IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc8174 + https://www.rfc-editor.org/errata/rfc8174/ 10.17487/RFC8174 @@ -272809,7 +272809,7 @@ IETF rtg manet - https://www.rfc-editor.org/errata/rfc8175 + https://www.rfc-editor.org/errata/rfc8175/ 10.17487/RFC8175 @@ -272844,7 +272844,7 @@ IETF sec oauth - https://www.rfc-editor.org/errata/rfc8176 + https://www.rfc-editor.org/errata/rfc8176/ 10.17487/RFC8176 @@ -272950,7 +272950,7 @@ BEST CURRENT PRACTICE IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc8179 + https://www.rfc-editor.org/errata/rfc8179/ 10.17487/RFC8179 @@ -272985,7 +272985,7 @@ IETF int 6tisch - https://www.rfc-editor.org/errata/rfc8180 + https://www.rfc-editor.org/errata/rfc8180/ 10.17487/RFC8180 @@ -273056,7 +273056,7 @@ IETF rtg sidr - https://www.rfc-editor.org/errata/rfc8182 + https://www.rfc-editor.org/errata/rfc8182/ 10.17487/RFC8182 @@ -273254,7 +273254,7 @@ IETF wit httpbis - https://www.rfc-editor.org/errata/rfc8188 + https://www.rfc-editor.org/errata/rfc8188/ 10.17487/RFC8188 @@ -273664,7 +273664,7 @@ IETF ops netmod - https://www.rfc-editor.org/errata/rfc8199 + https://www.rfc-editor.org/errata/rfc8199/ 10.17487/RFC8199 @@ -273710,7 +273710,7 @@ IETF int 6man - https://www.rfc-editor.org/errata/rfc8200 + https://www.rfc-editor.org/errata/rfc8200/ 10.17487/RFC8200 @@ -273939,7 +273939,7 @@ IETF rtg sidr - https://www.rfc-editor.org/errata/rfc8206 + https://www.rfc-editor.org/errata/rfc8206/ 10.17487/RFC8206 @@ -274200,7 +274200,7 @@ IETF rtg bess - https://www.rfc-editor.org/errata/rfc8214 + https://www.rfc-editor.org/errata/rfc8214/ 10.17487/RFC8214 @@ -274265,7 +274265,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc8216 + https://www.rfc-editor.org/errata/rfc8216/ 10.17487/RFC8216 @@ -274532,7 +274532,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc8223 + https://www.rfc-editor.org/errata/rfc8223/ 10.17487/RFC8223 @@ -274580,7 +274580,7 @@ IETF art stir - https://www.rfc-editor.org/errata/rfc8224 + https://www.rfc-editor.org/errata/rfc8224/ 10.17487/RFC8224 @@ -274608,7 +274608,7 @@ IETF art stir - https://www.rfc-editor.org/errata/rfc8225 + https://www.rfc-editor.org/errata/rfc8225/ 10.17487/RFC8225 @@ -274643,7 +274643,7 @@ IETF art stir - https://www.rfc-editor.org/errata/rfc8226 + https://www.rfc-editor.org/errata/rfc8226/ 10.17487/RFC8226 @@ -274716,7 +274716,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc8228 + https://www.rfc-editor.org/errata/rfc8228/ 10.17487/RFC8228 @@ -274756,7 +274756,7 @@ IETF sec ipsecme - https://www.rfc-editor.org/errata/rfc8229 + https://www.rfc-editor.org/errata/rfc8229/ 10.17487/RFC8229 @@ -274825,7 +274825,7 @@ IETF rtg pce - https://www.rfc-editor.org/errata/rfc8231 + https://www.rfc-editor.org/errata/rfc8231/ 10.17487/RFC8231 @@ -274915,7 +274915,7 @@ IETF rtg pce - https://www.rfc-editor.org/errata/rfc8233 + https://www.rfc-editor.org/errata/rfc8233/ 10.17487/RFC8233 @@ -274988,7 +274988,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc8235 + https://www.rfc-editor.org/errata/rfc8235/ 10.17487/RFC8235 @@ -275096,7 +275096,7 @@ IETF ops bmwg - https://www.rfc-editor.org/errata/rfc8239 + https://www.rfc-editor.org/errata/rfc8239/ 10.17487/RFC8239 @@ -275475,7 +275475,7 @@ IETF ops ippm - https://www.rfc-editor.org/errata/rfc8250 + https://www.rfc-editor.org/errata/rfc8250/ 10.17487/RFC8250 @@ -275539,7 +275539,7 @@ IETF sec oauth - https://www.rfc-editor.org/errata/rfc8252 + https://www.rfc-editor.org/errata/rfc8252/ 10.17487/RFC8252 @@ -275585,7 +275585,7 @@ IETF rtg pce - https://www.rfc-editor.org/errata/rfc8253 + https://www.rfc-editor.org/errata/rfc8253/ 10.17487/RFC8253 @@ -275749,7 +275749,7 @@ IETF wit tcpm - https://www.rfc-editor.org/errata/rfc8257 + https://www.rfc-editor.org/errata/rfc8257/ 10.17487/RFC8257 @@ -275812,7 +275812,7 @@ IETF art jsonbis - https://www.rfc-editor.org/errata/rfc8259 + https://www.rfc-editor.org/errata/rfc8259/ 10.17487/RFC8259 @@ -275988,7 +275988,7 @@ IETF art precis - https://www.rfc-editor.org/errata/rfc8264 + https://www.rfc-editor.org/errata/rfc8264/ 10.17487/RFC8264 @@ -276028,7 +276028,7 @@ IETF art precis - https://www.rfc-editor.org/errata/rfc8265 + https://www.rfc-editor.org/errata/rfc8265/ 10.17487/RFC8265 @@ -276213,7 +276213,7 @@ IETF sec curdle - https://www.rfc-editor.org/errata/rfc8270 + https://www.rfc-editor.org/errata/rfc8270/ 10.17487/RFC8270 @@ -276293,7 +276293,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc8272 + https://www.rfc-editor.org/errata/rfc8272/ 10.17487/RFC8272 @@ -276384,7 +276384,7 @@ IETF wit nfsv4 - https://www.rfc-editor.org/errata/rfc8275 + https://www.rfc-editor.org/errata/rfc8275/ 10.17487/RFC8275 @@ -276412,7 +276412,7 @@ IETF wit nfsv4 - https://www.rfc-editor.org/errata/rfc8276 + https://www.rfc-editor.org/errata/rfc8276/ 10.17487/RFC8276 @@ -276561,7 +276561,7 @@ INFORMATIONAL INFORMATIONAL IRTF - https://www.rfc-editor.org/errata/rfc8280 + https://www.rfc-editor.org/errata/rfc8280/ 10.17487/RFC8280 @@ -276595,7 +276595,7 @@ IETF rtg pce - https://www.rfc-editor.org/errata/rfc8281 + https://www.rfc-editor.org/errata/rfc8281/ 10.17487/RFC8281 @@ -276816,7 +276816,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc8287 + https://www.rfc-editor.org/errata/rfc8287/ 10.17487/RFC8287 @@ -276846,7 +276846,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc8288 + https://www.rfc-editor.org/errata/rfc8288/ 10.17487/RFC8288 @@ -276960,7 +276960,7 @@ IETF art webpush - https://www.rfc-editor.org/errata/rfc8291 + https://www.rfc-editor.org/errata/rfc8291/ 10.17487/RFC8291 @@ -277077,7 +277077,7 @@ IETF rtg rtgwg - https://www.rfc-editor.org/errata/rfc8294 + https://www.rfc-editor.org/errata/rfc8294/ 10.17487/RFC8294 @@ -277108,7 +277108,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc8295 + https://www.rfc-editor.org/errata/rfc8295/ 10.17487/RFC8295 @@ -277153,7 +277153,7 @@ IETF rtg bier - https://www.rfc-editor.org/errata/rfc8296 + https://www.rfc-editor.org/errata/rfc8296/ 10.17487/RFC8296 @@ -277250,7 +277250,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc8299 + https://www.rfc-editor.org/errata/rfc8299/ 10.17487/RFC8299 @@ -277294,7 +277294,7 @@ IETF rtg sfc - https://www.rfc-editor.org/errata/rfc8300 + https://www.rfc-editor.org/errata/rfc8300/ 10.17487/RFC8300 @@ -277400,7 +277400,7 @@ IETF wit taps - https://www.rfc-editor.org/errata/rfc8303 + https://www.rfc-editor.org/errata/rfc8303/ 10.17487/RFC8303 @@ -277431,7 +277431,7 @@ IETF wit taps - https://www.rfc-editor.org/errata/rfc8304 + https://www.rfc-editor.org/errata/rfc8304/ 10.17487/RFC8304 @@ -277509,7 +277509,7 @@ IETF rtg pce - https://www.rfc-editor.org/errata/rfc8306 + https://www.rfc-editor.org/errata/rfc8306/ 10.17487/RFC8306 @@ -277703,7 +277703,7 @@ IETF wit tsvwg - https://www.rfc-editor.org/errata/rfc8311 + https://www.rfc-editor.org/errata/rfc8311/ 10.17487/RFC8311 @@ -277746,7 +277746,7 @@ IETF wit tcpm - https://www.rfc-editor.org/errata/rfc8312 + https://www.rfc-editor.org/errata/rfc8312/ 10.17487/RFC8312 @@ -277859,7 +277859,7 @@ IETF sec uta - https://www.rfc-editor.org/errata/rfc8314 + https://www.rfc-editor.org/errata/rfc8314/ 10.17487/RFC8314 @@ -278259,7 +278259,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc8324 + https://www.rfc-editor.org/errata/rfc8324/ 10.17487/RFC8324 @@ -278307,7 +278307,7 @@ IETF wit tsvwg - https://www.rfc-editor.org/errata/rfc8325 + https://www.rfc-editor.org/errata/rfc8325/ 10.17487/RFC8325 @@ -278346,7 +278346,7 @@ IETF ops grow - https://www.rfc-editor.org/errata/rfc8326 + https://www.rfc-editor.org/errata/rfc8326/ 10.17487/RFC8326 @@ -278389,7 +278389,7 @@ IETF ops grow - https://www.rfc-editor.org/errata/rfc8327 + https://www.rfc-editor.org/errata/rfc8327/ 10.17487/RFC8327 @@ -278555,7 +278555,7 @@ IETF art payload - https://www.rfc-editor.org/errata/rfc8331 + https://www.rfc-editor.org/errata/rfc8331/ 10.17487/RFC8331 @@ -278739,7 +278739,7 @@ IETF wit httpbis - https://www.rfc-editor.org/errata/rfc8336 + https://www.rfc-editor.org/errata/rfc8336/ 10.17487/RFC8336 @@ -278909,7 +278909,7 @@ IETF ops netconf - https://www.rfc-editor.org/errata/rfc8341 + https://www.rfc-editor.org/errata/rfc8341/ 10.17487/RFC8341 @@ -278955,7 +278955,7 @@ IETF ops netmod - https://www.rfc-editor.org/errata/rfc8342 + https://www.rfc-editor.org/errata/rfc8342/ 10.17487/RFC8342 @@ -279052,7 +279052,7 @@ IETF rtg i2rs - https://www.rfc-editor.org/errata/rfc8345 + https://www.rfc-editor.org/errata/rfc8345/ 10.17487/RFC8345 @@ -279212,7 +279212,7 @@ IETF ops netmod - https://www.rfc-editor.org/errata/rfc8349 + https://www.rfc-editor.org/errata/rfc8349/ 10.17487/RFC8349 @@ -279437,7 +279437,7 @@ IETF rtg spring - https://www.rfc-editor.org/errata/rfc8355 + https://www.rfc-editor.org/errata/rfc8355/ 10.17487/RFC8355 @@ -279504,7 +279504,7 @@ IETF int dhc - https://www.rfc-editor.org/errata/rfc8357 + https://www.rfc-editor.org/errata/rfc8357/ 10.17487/RFC8357 @@ -279536,7 +279536,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc8358 + https://www.rfc-editor.org/errata/rfc8358/ 10.17487/RFC8358 @@ -279619,7 +279619,7 @@ IETF rtg sidr - https://www.rfc-editor.org/errata/rfc8360 + https://www.rfc-editor.org/errata/rfc8360/ 10.17487/RFC8360 @@ -279788,7 +279788,7 @@ IETF rtg pim - https://www.rfc-editor.org/errata/rfc8364 + https://www.rfc-editor.org/errata/rfc8364/ 10.17487/RFC8364 @@ -279834,7 +279834,7 @@ IETF rtg bess - https://www.rfc-editor.org/errata/rfc8365 + https://www.rfc-editor.org/errata/rfc8365/ 10.17487/RFC8365 @@ -279874,7 +279874,7 @@ IETF ops anima - https://www.rfc-editor.org/errata/rfc8366 + https://www.rfc-editor.org/errata/rfc8366/ 10.17487/RFC8366 @@ -279957,7 +279957,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc8369 + https://www.rfc-editor.org/errata/rfc8369/ 10.17487/RFC8369 @@ -280107,7 +280107,7 @@ IETF art slim - https://www.rfc-editor.org/errata/rfc8373 + https://www.rfc-editor.org/errata/rfc8373/ 10.17487/RFC8373 @@ -280170,7 +280170,7 @@ IETF int homenet - https://www.rfc-editor.org/errata/rfc8375 + https://www.rfc-editor.org/errata/rfc8375/ 10.17487/RFC8375 @@ -280779,7 +280779,7 @@ INFORMATIONAL INFORMATIONAL IRTF - https://www.rfc-editor.org/errata/rfc8391 + https://www.rfc-editor.org/errata/rfc8391/ 10.17487/RFC8391 @@ -280824,7 +280824,7 @@ IETF sec ace - https://www.rfc-editor.org/errata/rfc8392 + https://www.rfc-editor.org/errata/rfc8392/ 10.17487/RFC8392 @@ -281049,7 +281049,7 @@ IETF sec lamps - https://www.rfc-editor.org/errata/rfc8398 + https://www.rfc-editor.org/errata/rfc8398/ 10.17487/RFC8398 @@ -281120,7 +281120,7 @@ IETF rtg teas - https://www.rfc-editor.org/errata/rfc8400 + https://www.rfc-editor.org/errata/rfc8400/ 10.17487/RFC8400 @@ -281158,7 +281158,7 @@ IETF rtg bier - https://www.rfc-editor.org/errata/rfc8401 + https://www.rfc-editor.org/errata/rfc8401/ 10.17487/RFC8401 @@ -281203,7 +281203,7 @@ IETF rtg spring - https://www.rfc-editor.org/errata/rfc8402 + https://www.rfc-editor.org/errata/rfc8402/ 10.17487/RFC8402 @@ -281424,7 +281424,7 @@ IETF ops netmod - https://www.rfc-editor.org/errata/rfc8407 + https://www.rfc-editor.org/errata/rfc8407/ 10.17487/RFC8407 @@ -281496,7 +281496,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc8409 + https://www.rfc-editor.org/errata/rfc8409/ 10.17487/RFC8409 @@ -281543,7 +281543,7 @@ IETF sec curdle - https://www.rfc-editor.org/errata/rfc8410 + https://www.rfc-editor.org/errata/rfc8410/ 10.17487/RFC8410 @@ -281700,7 +281700,7 @@ IETF sec oauth - https://www.rfc-editor.org/errata/rfc8414 + https://www.rfc-editor.org/errata/rfc8414/ 10.17487/RFC8414 @@ -281760,7 +281760,7 @@ IETF int dhc - https://www.rfc-editor.org/errata/rfc8415 + https://www.rfc-editor.org/errata/rfc8415/ 10.17487/RFC8415 @@ -281796,7 +281796,7 @@ IETF rtg sidr - https://www.rfc-editor.org/errata/rfc8416 + https://www.rfc-editor.org/errata/rfc8416/ 10.17487/RFC8416 @@ -281841,7 +281841,7 @@ IETF sec secevent - https://www.rfc-editor.org/errata/rfc8417 + https://www.rfc-editor.org/errata/rfc8417/ 10.17487/RFC8417 @@ -281890,7 +281890,7 @@ IETF sec curdle - https://www.rfc-editor.org/errata/rfc8419 + https://www.rfc-editor.org/errata/rfc8419/ 10.17487/RFC8419 @@ -281988,7 +281988,7 @@ IETF sec tls - https://www.rfc-editor.org/errata/rfc8422 + https://www.rfc-editor.org/errata/rfc8422/ 10.17487/RFC8422 @@ -282031,7 +282031,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc8423 + https://www.rfc-editor.org/errata/rfc8423/ 10.17487/RFC8423 @@ -282148,7 +282148,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc8427 + https://www.rfc-editor.org/errata/rfc8427/ 10.17487/RFC8427 @@ -282192,7 +282192,7 @@ IETF wit core - https://www.rfc-editor.org/errata/rfc8428 + https://www.rfc-editor.org/errata/rfc8428/ 10.17487/RFC8428 @@ -282306,7 +282306,7 @@ IETF rtg i2rs - https://www.rfc-editor.org/errata/rfc8431 + https://www.rfc-editor.org/errata/rfc8431/ 10.17487/RFC8431 @@ -282574,7 +282574,7 @@ INFORMATIONAL INFORMATIONAL IRTF - https://www.rfc-editor.org/errata/rfc8439 + https://www.rfc-editor.org/errata/rfc8439/ 10.17487/RFC8439 @@ -282637,7 +282637,7 @@ IETF wit httpbis - https://www.rfc-editor.org/errata/rfc8441 + https://www.rfc-editor.org/errata/rfc8441/ 10.17487/RFC8441 @@ -282792,7 +282792,7 @@ IETF art ice - https://www.rfc-editor.org/errata/rfc8445 + https://www.rfc-editor.org/errata/rfc8445/ 10.17487/RFC8445 @@ -282833,7 +282833,7 @@ IETF sec tls - https://www.rfc-editor.org/errata/rfc8446 + https://www.rfc-editor.org/errata/rfc8446/ 10.17487/RFC8446 @@ -282871,7 +282871,7 @@ IETF sec tls - https://www.rfc-editor.org/errata/rfc8447 + https://www.rfc-editor.org/errata/rfc8447/ 10.17487/RFC8447 @@ -282896,7 +282896,7 @@ IETF sec tls - https://www.rfc-editor.org/errata/rfc8448 + https://www.rfc-editor.org/errata/rfc8448/ 10.17487/RFC8448 @@ -283034,7 +283034,7 @@ INFORMATIONAL INFORMATIONAL IRTF - https://www.rfc-editor.org/errata/rfc8452 + https://www.rfc-editor.org/errata/rfc8452/ 10.17487/RFC8452 @@ -283320,7 +283320,7 @@ IETF sec uta - https://www.rfc-editor.org/errata/rfc8460 + https://www.rfc-editor.org/errata/rfc8460/ 10.17487/RFC8460 @@ -283361,7 +283361,7 @@ IETF sec uta - https://www.rfc-editor.org/errata/rfc8461 + https://www.rfc-editor.org/errata/rfc8461/ 10.17487/RFC8461 @@ -283423,7 +283423,7 @@ IETF art dcrup - https://www.rfc-editor.org/errata/rfc8463 + https://www.rfc-editor.org/errata/rfc8463/ 10.17487/RFC8463 @@ -283521,7 +283521,7 @@ IETF ops l2sm - https://www.rfc-editor.org/errata/rfc8466 + https://www.rfc-editor.org/errata/rfc8466/ 10.17487/RFC8466 @@ -283549,7 +283549,7 @@ IETF int dprive - https://www.rfc-editor.org/errata/rfc8467 + https://www.rfc-editor.org/errata/rfc8467/ 10.17487/RFC8467 @@ -283639,7 +283639,7 @@ IETF rtg pals - https://www.rfc-editor.org/errata/rfc8469 + https://www.rfc-editor.org/errata/rfc8469/ 10.17487/RFC8469 @@ -283966,7 +283966,7 @@ INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc8478 + https://www.rfc-editor.org/errata/rfc8478/ 10.17487/RFC8478 @@ -284180,7 +284180,7 @@ IETF art doh - https://www.rfc-editor.org/errata/rfc8484 + https://www.rfc-editor.org/errata/rfc8484/ 10.17487/RFC8484 @@ -284242,7 +284242,7 @@ IETF art codec - https://www.rfc-editor.org/errata/rfc8486 + https://www.rfc-editor.org/errata/rfc8486/ 10.17487/RFC8486 @@ -284358,7 +284358,7 @@ IETF tsv tram - https://www.rfc-editor.org/errata/rfc8489 + https://www.rfc-editor.org/errata/rfc8489/ 10.17487/RFC8489 @@ -284470,7 +284470,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc8492 + https://www.rfc-editor.org/errata/rfc8492/ 10.17487/RFC8492 @@ -284505,7 +284505,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc8493 + https://www.rfc-editor.org/errata/rfc8493/ 10.17487/RFC8493 @@ -284930,7 +284930,7 @@ IETF int 6lo - https://www.rfc-editor.org/errata/rfc8505 + https://www.rfc-editor.org/errata/rfc8505/ 10.17487/RFC8505 @@ -285445,7 +285445,7 @@ IETF ops netmod - https://www.rfc-editor.org/errata/rfc8519 + https://www.rfc-editor.org/errata/rfc8519/ 10.17487/RFC8519 @@ -285481,7 +285481,7 @@ IETF ops opsawg - https://www.rfc-editor.org/errata/rfc8520 + https://www.rfc-editor.org/errata/rfc8520/ 10.17487/RFC8520 @@ -285520,7 +285520,7 @@ IETF art regext - https://www.rfc-editor.org/errata/rfc8521 + https://www.rfc-editor.org/errata/rfc8521/ 10.17487/RFC8521 @@ -285594,7 +285594,7 @@ IETF ops netconf - https://www.rfc-editor.org/errata/rfc8525 + https://www.rfc-editor.org/errata/rfc8525/ 10.17487/RFC8525 @@ -285704,7 +285704,7 @@ IETF ops netmod - https://www.rfc-editor.org/errata/rfc8528 + https://www.rfc-editor.org/errata/rfc8528/ 10.17487/RFC8528 @@ -285817,7 +285817,7 @@ IETF ops lime - https://www.rfc-editor.org/errata/rfc8531 + https://www.rfc-editor.org/errata/rfc8531/ 10.17487/RFC8531 @@ -285855,7 +285855,7 @@ IETF ops lime - https://www.rfc-editor.org/errata/rfc8532 + https://www.rfc-editor.org/errata/rfc8532/ 10.17487/RFC8532 @@ -285980,7 +285980,7 @@ PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc8536 + https://www.rfc-editor.org/errata/rfc8536/ 10.17487/RFC8536 @@ -286211,7 +286211,7 @@ IETF rtg i2rs - https://www.rfc-editor.org/errata/rfc8542 + https://www.rfc-editor.org/errata/rfc8542/ 10.17487/RFC8542 @@ -286573,7 +286573,7 @@ IETF ops dnsop - https://www.rfc-editor.org/errata/rfc8552 + https://www.rfc-editor.org/errata/rfc8552/ 10.17487/RFC8552 @@ -286673,7 +286673,7 @@ INFORMATIONAL INFORMATIONAL IRTF - https://www.rfc-editor.org/errata/rfc8554 + https://www.rfc-editor.org/errata/rfc8554/ 10.17487/RFC8554 @@ -286713,7 +286713,7 @@ IETF sec acme - https://www.rfc-editor.org/errata/rfc8555 + https://www.rfc-editor.org/errata/rfc8555/ 10.17487/RFC8555 @@ -286804,7 +286804,7 @@ INFORMATIONAL INFORMATIONAL IAB - https://www.rfc-editor.org/errata/rfc8558 + https://www.rfc-editor.org/errata/rfc8558/ 10.17487/RFC8558 @@ -286925,7 +286925,7 @@ IETF rtg ccamp - https://www.rfc-editor.org/errata/rfc8561 + https://www.rfc-editor.org/errata/rfc8561/ 10.17487/RFC8561 @@ -287286,7 +287286,7 @@ IETF ops netconf - https://www.rfc-editor.org/errata/rfc8572 + https://www.rfc-editor.org/errata/rfc8572/ 10.17487/RFC8572 @@ -287358,7 +287358,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc8574 + https://www.rfc-editor.org/errata/rfc8574/ 10.17487/RFC8574 @@ -287472,7 +287472,7 @@ IETF rtg mpls - https://www.rfc-editor.org/errata/rfc8577 + https://www.rfc-editor.org/errata/rfc8577/ 10.17487/RFC8577 @@ -287533,7 +287533,7 @@ IETF art extra - https://www.rfc-editor.org/errata/rfc8579 + https://www.rfc-editor.org/errata/rfc8579/ 10.17487/RFC8579 @@ -287712,7 +287712,7 @@ IETF rtg bess - https://www.rfc-editor.org/errata/rfc8584 + https://www.rfc-editor.org/errata/rfc8584/ 10.17487/RFC8584 @@ -287781,7 +287781,7 @@ IETF wit httpbis - https://www.rfc-editor.org/errata/rfc8586 + https://www.rfc-editor.org/errata/rfc8586/ 10.17487/RFC8586 @@ -287848,7 +287848,7 @@ IETF art stir - https://www.rfc-editor.org/errata/rfc8588 + https://www.rfc-editor.org/errata/rfc8588/ 10.17487/RFC8588 @@ -287912,7 +287912,7 @@ IETF art regext - https://www.rfc-editor.org/errata/rfc8590 + https://www.rfc-editor.org/errata/rfc8590/ 10.17487/RFC8590 @@ -288223,7 +288223,7 @@ IETF art sipcore - https://www.rfc-editor.org/errata/rfc8599 + https://www.rfc-editor.org/errata/rfc8599/ 10.17487/RFC8599 @@ -288302,7 +288302,7 @@ IETF art dmarc - https://www.rfc-editor.org/errata/rfc8601 + https://www.rfc-editor.org/errata/rfc8601/ 10.17487/RFC8601 @@ -288603,7 +288603,7 @@ IETF art cbor - https://www.rfc-editor.org/errata/rfc8610 + https://www.rfc-editor.org/errata/rfc8610/ 10.17487/RFC8610 @@ -288719,7 +288719,7 @@ IETF wit core - https://www.rfc-editor.org/errata/rfc8613 + https://www.rfc-editor.org/errata/rfc8613/ 10.17487/RFC8613 @@ -288860,7 +288860,7 @@ IETF art dmarc - https://www.rfc-editor.org/errata/rfc8617 + https://www.rfc-editor.org/errata/rfc8617/ 10.17487/RFC8617 @@ -288962,7 +288962,7 @@ IETF art jmap - https://www.rfc-editor.org/errata/rfc8620 + https://www.rfc-editor.org/errata/rfc8620/ 10.17487/RFC8620 @@ -289100,7 +289100,7 @@ IETF ops dnsop - https://www.rfc-editor.org/errata/rfc8624 + https://www.rfc-editor.org/errata/rfc8624/ 10.17487/RFC8624 @@ -289185,7 +289185,7 @@ IETF art payload - https://www.rfc-editor.org/errata/rfc8627 + https://www.rfc-editor.org/errata/rfc8627/ 10.17487/RFC8627 @@ -289231,7 +289231,7 @@ IETF sec oauth - https://www.rfc-editor.org/errata/rfc8628 + https://www.rfc-editor.org/errata/rfc8628/ 10.17487/RFC8628 @@ -289360,7 +289360,7 @@ IETF rtg ccamp - https://www.rfc-editor.org/errata/rfc8632 + https://www.rfc-editor.org/errata/rfc8632/ 10.17487/RFC8632 @@ -289612,7 +289612,7 @@ IETF ops netconf - https://www.rfc-editor.org/errata/rfc8639 + https://www.rfc-editor.org/errata/rfc8639/ 10.17487/RFC8639 @@ -289652,7 +289652,7 @@ IETF ops netconf - https://www.rfc-editor.org/errata/rfc8640 + https://www.rfc-editor.org/errata/rfc8640/ 10.17487/RFC8640 @@ -289878,7 +289878,7 @@ IETF ops netconf - https://www.rfc-editor.org/errata/rfc8650 + https://www.rfc-editor.org/errata/rfc8650/ 10.17487/RFC8650 @@ -290246,7 +290246,7 @@ IETF sec lamps - https://www.rfc-editor.org/errata/rfc8659 + https://www.rfc-editor.org/errata/rfc8659/ 10.17487/RFC8659 @@ -290473,7 +290473,7 @@ IETF rtg pce - https://www.rfc-editor.org/errata/rfc8664 + https://www.rfc-editor.org/errata/rfc8664/ 10.17487/RFC8664 @@ -290528,7 +290528,7 @@ IETF rtg ospf - https://www.rfc-editor.org/errata/rfc8665 + https://www.rfc-editor.org/errata/rfc8665/ 10.17487/RFC8665 @@ -290619,7 +290619,7 @@ IETF rtg lsr - https://www.rfc-editor.org/errata/rfc8667 + https://www.rfc-editor.org/errata/rfc8667/ 10.17487/RFC8667 @@ -290659,7 +290659,7 @@ IETF rtg isis - https://www.rfc-editor.org/errata/rfc8668 + https://www.rfc-editor.org/errata/rfc8668/ 10.17487/RFC8668 @@ -290707,7 +290707,7 @@ IETF rtg idr - https://www.rfc-editor.org/errata/rfc8669 + https://www.rfc-editor.org/errata/rfc8669/ 10.17487/RFC8669 @@ -291056,7 +291056,7 @@ IETF rtg rtgwg - https://www.rfc-editor.org/errata/rfc8678 + https://www.rfc-editor.org/errata/rfc8678/ 10.17487/RFC8678 @@ -291298,7 +291298,7 @@ IETF tsv mptcp - https://www.rfc-editor.org/errata/rfc8684 + https://www.rfc-editor.org/errata/rfc8684/ 10.17487/RFC8684 @@ -291452,7 +291452,7 @@ IETF art sipcore - https://www.rfc-editor.org/errata/rfc8688 + https://www.rfc-editor.org/errata/rfc8688/ 10.17487/RFC8688 @@ -291482,7 +291482,7 @@ IETF sec uta - https://www.rfc-editor.org/errata/rfc8689 + https://www.rfc-editor.org/errata/rfc8689/ 10.17487/RFC8689 @@ -291651,7 +291651,7 @@ IETF sec oauth - https://www.rfc-editor.org/errata/rfc8693 + https://www.rfc-editor.org/errata/rfc8693/ 10.17487/RFC8693 @@ -291906,7 +291906,7 @@ INFORMATIONAL INFORMATIONAL IAB - https://www.rfc-editor.org/errata/rfc8700 + https://www.rfc-editor.org/errata/rfc8700/ 10.17487/RFC8700 @@ -291974,7 +291974,7 @@ IETF sec lamps - https://www.rfc-editor.org/errata/rfc8702 + https://www.rfc-editor.org/errata/rfc8702/ 10.17487/RFC8702 @@ -292185,7 +292185,7 @@ IETF sec oauth - https://www.rfc-editor.org/errata/rfc8707 + https://www.rfc-editor.org/errata/rfc8707/ 10.17487/RFC8707 @@ -292219,7 +292219,7 @@ IETF sec lamps - https://www.rfc-editor.org/errata/rfc8708 + https://www.rfc-editor.org/errata/rfc8708/ 10.17487/RFC8708 @@ -292252,7 +292252,7 @@ IETF sec curdle - https://www.rfc-editor.org/errata/rfc8709 + https://www.rfc-editor.org/errata/rfc8709/ 10.17487/RFC8709 @@ -292418,7 +292418,7 @@ IETF gen iasa2 - https://www.rfc-editor.org/errata/rfc8713 + https://www.rfc-editor.org/errata/rfc8713/ 10.17487/RFC8713 @@ -292454,7 +292454,7 @@ IETF gen iasa2 - https://www.rfc-editor.org/errata/rfc8714 + https://www.rfc-editor.org/errata/rfc8714/ 10.17487/RFC8714 @@ -292571,7 +292571,7 @@ IETF gen iasa2 - https://www.rfc-editor.org/errata/rfc8717 + https://www.rfc-editor.org/errata/rfc8717/ 10.17487/RFC8717 @@ -292990,7 +292990,7 @@ IETF sec mile - https://www.rfc-editor.org/errata/rfc8727 + https://www.rfc-editor.org/errata/rfc8727/ 10.17487/RFC8727 @@ -293613,7 +293613,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc8743 + https://www.rfc-editor.org/errata/rfc8743/ 10.17487/RFC8743 @@ -294024,7 +294024,7 @@ IETF int 6man - https://www.rfc-editor.org/errata/rfc8754 + https://www.rfc-editor.org/errata/rfc8754/ 10.17487/RFC8754 @@ -294694,7 +294694,7 @@ IETF sec tls - https://www.rfc-editor.org/errata/rfc8773 + https://www.rfc-editor.org/errata/rfc8773/ 10.17487/RFC8773 @@ -294725,7 +294725,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc8774 + https://www.rfc-editor.org/errata/rfc8774/ 10.17487/RFC8774 @@ -294862,7 +294862,7 @@ IETF ops mboned - https://www.rfc-editor.org/errata/rfc8777 + https://www.rfc-editor.org/errata/rfc8777/ 10.17487/RFC8777 @@ -295059,7 +295059,7 @@ IETF sec dots - https://www.rfc-editor.org/errata/rfc8782 + https://www.rfc-editor.org/errata/rfc8782/ 10.17487/RFC8782 @@ -295104,7 +295104,7 @@ IETF sec dots - https://www.rfc-editor.org/errata/rfc8783 + https://www.rfc-editor.org/errata/rfc8783/ 10.17487/RFC8783 @@ -295186,7 +295186,7 @@ INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc8785 + https://www.rfc-editor.org/errata/rfc8785/ 10.17487/RFC8785 @@ -295336,7 +295336,7 @@ BEST CURRENT PRACTICE IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc8789 + https://www.rfc-editor.org/errata/rfc8789/ 10.17487/RFC8789 @@ -295445,7 +295445,7 @@ IETF ops netmod - https://www.rfc-editor.org/errata/rfc8792 + https://www.rfc-editor.org/errata/rfc8792/ 10.17487/RFC8792 @@ -295535,7 +295535,7 @@ IETF art cellar - https://www.rfc-editor.org/errata/rfc8794 + https://www.rfc-editor.org/errata/rfc8794/ 10.17487/RFC8794 @@ -296007,7 +296007,7 @@ IETF ops dnsop - https://www.rfc-editor.org/errata/rfc8806 + https://www.rfc-editor.org/errata/rfc8806/ 10.17487/RFC8806 @@ -296664,7 +296664,7 @@ supported in a given network.

IETF sec acme - https://www.rfc-editor.org/errata/rfc8823 + https://www.rfc-editor.org/errata/rfc8823/ 10.17487/RFC8823
@@ -296709,7 +296709,7 @@ supported in a given network.

IETF int lpwan - https://www.rfc-editor.org/errata/rfc8824 + https://www.rfc-editor.org/errata/rfc8824/ 10.17487/RFC8824
@@ -296968,7 +296968,7 @@ supported in a given network.

IETF wit rtcweb - https://www.rfc-editor.org/errata/rfc8832 + https://www.rfc-editor.org/errata/rfc8832/ 10.17487/RFC8832
@@ -297380,7 +297380,7 @@ supported in a given network.

IETF art mmusic - https://www.rfc-editor.org/errata/rfc8843 + https://www.rfc-editor.org/errata/rfc8843/ 10.17487/RFC8843
@@ -297663,7 +297663,7 @@ supported in a given network.

IETF art mmusic - https://www.rfc-editor.org/errata/rfc8851 + https://www.rfc-editor.org/errata/rfc8851/ 10.17487/RFC8851
@@ -298155,7 +298155,7 @@ supported in a given network.

IETF art mmusic - https://www.rfc-editor.org/errata/rfc8864 + https://www.rfc-editor.org/errata/rfc8864/ 10.17487/RFC8864
@@ -298661,7 +298661,7 @@ supported in a given network.

IETF int ntp - https://www.rfc-editor.org/errata/rfc8877 + https://www.rfc-editor.org/errata/rfc8877/ 10.17487/RFC8877
@@ -298700,7 +298700,7 @@ supported in a given network.

INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc8878 + https://www.rfc-editor.org/errata/rfc8878/ 10.17487/RFC8878
@@ -298804,7 +298804,7 @@ supported in a given network.

IETF wit nfsv4 - https://www.rfc-editor.org/errata/rfc8881 + https://www.rfc-editor.org/errata/rfc8881/ 10.17487/RFC8881
@@ -298992,7 +298992,7 @@ supported in a given network.

IETF ops opsawg - https://www.rfc-editor.org/errata/rfc8886 + https://www.rfc-editor.org/errata/rfc8886/ 10.17487/RFC8886
@@ -299060,7 +299060,7 @@ supported in a given network.

IETF wit avtcore - https://www.rfc-editor.org/errata/rfc8888 + https://www.rfc-editor.org/errata/rfc8888/ 10.17487/RFC8888
@@ -299133,7 +299133,7 @@ supported in a given network.

INFORMATIONAL INFORMATIONAL IAB - https://www.rfc-editor.org/errata/rfc8890 + https://www.rfc-editor.org/errata/rfc8890/ 10.17487/RFC8890
@@ -299277,7 +299277,7 @@ and allocation policy as interface types. This document updates RFC INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc8894 + https://www.rfc-editor.org/errata/rfc8894/ 10.17487/RFC8894 @@ -299310,7 +299310,7 @@ and allocation policy as interface types. This document updates RFC IETF ops alto - https://www.rfc-editor.org/errata/rfc8895 + https://www.rfc-editor.org/errata/rfc8895/ 10.17487/RFC8895 @@ -299418,7 +299418,7 @@ and allocation policy as interface types. This document updates RFC IETF art sipcore - https://www.rfc-editor.org/errata/rfc8898 + https://www.rfc-editor.org/errata/rfc8898/ 10.17487/RFC8898 @@ -299745,7 +299745,7 @@ and allocation policy as interface types. This document updates RFC IETF ops dnsop - https://www.rfc-editor.org/errata/rfc8906 + https://www.rfc-editor.org/errata/rfc8906/ 10.17487/RFC8906 @@ -299788,7 +299788,7 @@ and allocation policy as interface types. This document updates RFC IETF ops opsawg - https://www.rfc-editor.org/errata/rfc8907 + https://www.rfc-editor.org/errata/rfc8907/ 10.17487/RFC8907 @@ -299891,7 +299891,7 @@ and allocation policy as interface types. This document updates RFC IETF art capport - https://www.rfc-editor.org/errata/rfc8910 + https://www.rfc-editor.org/errata/rfc8910/ 10.17487/RFC8910 @@ -299976,7 +299976,7 @@ ICMP Round-Trip Latency and Loss, and TCP Round-Trip Delay and Loss.

IETF ops ippm - https://www.rfc-editor.org/errata/rfc8912 + https://www.rfc-editor.org/errata/rfc8912/ 10.17487/RFC8912
@@ -300021,7 +300021,7 @@ with the Network Management Datastore Architecture (NMDA).

IETF ops ippm - https://www.rfc-editor.org/errata/rfc8913 + https://www.rfc-editor.org/errata/rfc8913/ 10.17487/RFC8913
@@ -300277,7 +300277,7 @@ with the Network Management Datastore Architecture (NMDA).

IETF rtg lsr - https://www.rfc-editor.org/errata/rfc8919 + https://www.rfc-editor.org/errata/rfc8919/ 10.17487/RFC8919
@@ -300320,7 +300320,7 @@ with the Network Management Datastore Architecture (NMDA).

IETF rtg lsr - https://www.rfc-editor.org/errata/rfc8920 + https://www.rfc-editor.org/errata/rfc8920/ 10.17487/RFC8920
@@ -300801,7 +300801,7 @@ with the Network Management Datastore Architecture (NMDA).

IETF int dprive - https://www.rfc-editor.org/errata/rfc8932 + https://www.rfc-editor.org/errata/rfc8932/ 10.17487/RFC8932
@@ -301283,7 +301283,7 @@ with the Network Management Datastore Architecture (NMDA).

IETF rtg i2rs - https://www.rfc-editor.org/errata/rfc8944 + https://www.rfc-editor.org/errata/rfc8944/ 10.17487/RFC8944
@@ -301332,7 +301332,7 @@ with the Network Management Datastore Architecture (NMDA).

IETF ops dnsop - https://www.rfc-editor.org/errata/rfc8945 + https://www.rfc-editor.org/errata/rfc8945/ 10.17487/RFC8945
@@ -301719,7 +301719,7 @@ with the Network Management Datastore Architecture (NMDA).

IETF rtg idr - https://www.rfc-editor.org/errata/rfc8955 + https://www.rfc-editor.org/errata/rfc8955/ 10.17487/RFC8955
@@ -301762,7 +301762,7 @@ with the Network Management Datastore Architecture (NMDA).

IETF rtg idr - https://www.rfc-editor.org/errata/rfc8956 + https://www.rfc-editor.org/errata/rfc8956/ 10.17487/RFC8956
@@ -301866,7 +301866,7 @@ with the Network Management Datastore Architecture (NMDA).

INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc8959 + https://www.rfc-editor.org/errata/rfc8959/ 10.17487/RFC8959
@@ -301911,7 +301911,7 @@ with the Network Management Datastore Architecture (NMDA).

IETF rtg mpls - https://www.rfc-editor.org/errata/rfc8960 + https://www.rfc-editor.org/errata/rfc8960/ 10.17487/RFC8960
@@ -301981,7 +301981,7 @@ with the Network Management Datastore Architecture (NMDA).

INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc8962 + https://www.rfc-editor.org/errata/rfc8962/ 10.17487/RFC8962
@@ -302006,7 +302006,7 @@ with the Network Management Datastore Architecture (NMDA).

INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc8963 + https://www.rfc-editor.org/errata/rfc8963/ 10.17487/RFC8963
@@ -302138,7 +302138,7 @@ with the Network Management Datastore Architecture (NMDA).

IETF rtg babel - https://www.rfc-editor.org/errata/rfc8966 + https://www.rfc-editor.org/errata/rfc8966/ 10.17487/RFC8966
@@ -302263,7 +302263,7 @@ with the Network Management Datastore Architecture (NMDA).

IETF ops opsawg - https://www.rfc-editor.org/errata/rfc8969 + https://www.rfc-editor.org/errata/rfc8969/ 10.17487/RFC8969
@@ -302339,7 +302339,7 @@ with the Network Management Datastore Architecture (NMDA).

IETF rtg bfd - https://www.rfc-editor.org/errata/rfc8971 + https://www.rfc-editor.org/errata/rfc8971/ 10.17487/RFC8971
@@ -302388,7 +302388,7 @@ with the Network Management Datastore Architecture (NMDA).

IETF ops ippm - https://www.rfc-editor.org/errata/rfc8972 + https://www.rfc-editor.org/errata/rfc8972/ 10.17487/RFC8972
@@ -302543,7 +302543,7 @@ with the Network Management Datastore Architecture (NMDA).

IETF ops dnsop - https://www.rfc-editor.org/errata/rfc8976 + https://www.rfc-editor.org/errata/rfc8976/ 10.17487/RFC8976
@@ -302843,7 +302843,7 @@ with the Network Management Datastore Architecture (NMDA).

IETF art calext - https://www.rfc-editor.org/errata/rfc8984 + https://www.rfc-editor.org/errata/rfc8984/ 10.17487/RFC8984
@@ -302932,7 +302932,7 @@ with the Network Management Datastore Architecture (NMDA).

IETF rtg spring - https://www.rfc-editor.org/errata/rfc8986 + https://www.rfc-editor.org/errata/rfc8986/ 10.17487/RFC8986
@@ -303129,7 +303129,7 @@ with the Network Management Datastore Architecture (NMDA).

IETF ops anima - https://www.rfc-editor.org/errata/rfc8992 + https://www.rfc-editor.org/errata/rfc8992/ 10.17487/RFC8992
@@ -303242,7 +303242,7 @@ with the Network Management Datastore Architecture (NMDA).

IETF ops anima - https://www.rfc-editor.org/errata/rfc8994 + https://www.rfc-editor.org/errata/rfc8994/ 10.17487/RFC8994
@@ -303294,7 +303294,7 @@ with the Network Management Datastore Architecture (NMDA).

IETF ops anima - https://www.rfc-editor.org/errata/rfc8995 + https://www.rfc-editor.org/errata/rfc8995/ 10.17487/RFC8995
@@ -303423,7 +303423,7 @@ with the Network Management Datastore Architecture (NMDA).

IETF sec tls - https://www.rfc-editor.org/errata/rfc8996 + https://www.rfc-editor.org/errata/rfc8996/ 10.17487/RFC8996
@@ -303567,7 +303567,7 @@ with the Network Management Datastore Architecture (NMDA).

IETF wit quic - https://www.rfc-editor.org/errata/rfc9000 + https://www.rfc-editor.org/errata/rfc9000/ 10.17487/RFC9000
@@ -303604,7 +303604,7 @@ with the Network Management Datastore Architecture (NMDA).

IETF wit quic - https://www.rfc-editor.org/errata/rfc9001 + https://www.rfc-editor.org/errata/rfc9001/ 10.17487/RFC9001
@@ -303643,7 +303643,7 @@ with the Network Management Datastore Architecture (NMDA).

IETF wit quic - https://www.rfc-editor.org/errata/rfc9002 + https://www.rfc-editor.org/errata/rfc9002/ 10.17487/RFC9002
@@ -303886,7 +303886,7 @@ with the Network Management Datastore Architecture (NMDA).

IETF rtg roll - https://www.rfc-editor.org/errata/rfc9008 + https://www.rfc-editor.org/errata/rfc9008/ 10.17487/RFC9008
@@ -303973,7 +303973,7 @@ with the Network Management Datastore Architecture (NMDA).

IETF rtg roll - https://www.rfc-editor.org/errata/rfc9010 + https://www.rfc-editor.org/errata/rfc9010/ 10.17487/RFC9010
@@ -304118,7 +304118,7 @@ with the Network Management Datastore Architecture (NMDA).

IETF rtg ospf - https://www.rfc-editor.org/errata/rfc9013 + https://www.rfc-editor.org/errata/rfc9013/ 10.17487/RFC9013
@@ -304494,7 +304494,7 @@ with the Network Management Datastore Architecture (NMDA).

IETF art regext - https://www.rfc-editor.org/errata/rfc9022 + https://www.rfc-editor.org/errata/rfc9022/ 10.17487/RFC9022
@@ -305585,7 +305585,7 @@ with the Network Management Datastore Architecture (NMDA).

IETF art extra - https://www.rfc-editor.org/errata/rfc9051 + https://www.rfc-editor.org/errata/rfc9051/ 10.17487/RFC9051
@@ -305672,7 +305672,7 @@ with the Network Management Datastore Architecture (NMDA).

IETF sec cose - https://www.rfc-editor.org/errata/rfc9053 + https://www.rfc-editor.org/errata/rfc9053/ 10.17487/RFC9053
@@ -305704,7 +305704,7 @@ with the Network Management Datastore Architecture (NMDA).

IETF sec cose - https://www.rfc-editor.org/errata/rfc9054 + https://www.rfc-editor.org/errata/rfc9054/ 10.17487/RFC9054
@@ -306016,7 +306016,7 @@ with the Network Management Datastore Architecture (NMDA).

IETF rtg bess - https://www.rfc-editor.org/errata/rfc9062 + https://www.rfc-editor.org/errata/rfc9062/ 10.17487/RFC9062
@@ -306206,7 +306206,7 @@ with the Network Management Datastore Architecture (NMDA).

IETF rtg rtgwg - https://www.rfc-editor.org/errata/rfc9067 + https://www.rfc-editor.org/errata/rfc9067/ 10.17487/RFC9067
@@ -306437,7 +306437,7 @@ selected by the local BGP speaker's Decision Process.

IETF art calext - https://www.rfc-editor.org/errata/rfc9073 + https://www.rfc-editor.org/errata/rfc9073/ 10.17487/RFC9073
@@ -306477,7 +306477,7 @@ selected by the local BGP speaker's Decision Process.

IETF art calext - https://www.rfc-editor.org/errata/rfc9074 + https://www.rfc-editor.org/errata/rfc9074/ 10.17487/RFC9074
@@ -306544,7 +306544,7 @@ selected by the local BGP speaker's Decision Process.

IETF int dprive - https://www.rfc-editor.org/errata/rfc9076 + https://www.rfc-editor.org/errata/rfc9076/ 10.17487/RFC9076
@@ -306796,7 +306796,7 @@ selected by the local BGP speaker's Decision Process.

IETF art regext - https://www.rfc-editor.org/errata/rfc9083 + https://www.rfc-editor.org/errata/rfc9083/ 10.17487/RFC9083
@@ -306891,7 +306891,7 @@ selected by the local BGP speaker's Decision Process.

IETF rtg idr - https://www.rfc-editor.org/errata/rfc9085 + https://www.rfc-editor.org/errata/rfc9085/ 10.17487/RFC9085
@@ -307243,7 +307243,7 @@ selected by the local BGP speaker's Decision Process.

IETF rtg ccamp - https://www.rfc-editor.org/errata/rfc9094 + https://www.rfc-editor.org/errata/rfc9094/ 10.17487/RFC9094
@@ -307412,7 +307412,7 @@ selected by the local BGP speaker's Decision Process.

IETF ops v6ops - https://www.rfc-editor.org/errata/rfc9098 + https://www.rfc-editor.org/errata/rfc9098/ 10.17487/RFC9098
@@ -307570,7 +307570,7 @@ selected by the local BGP speaker's Decision Process.

EXPERIMENTAL EXPERIMENTAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc9102 + https://www.rfc-editor.org/errata/rfc9102/ 10.17487/RFC9102
@@ -307733,7 +307733,7 @@ selected by the local BGP speaker's Decision Process.

INFORMATIONAL INFORMATIONAL IRTF - https://www.rfc-editor.org/errata/rfc9106 + https://www.rfc-editor.org/errata/rfc9106/ 10.17487/RFC9106
@@ -307909,7 +307909,7 @@ selected by the local BGP speaker's Decision Process.

IETF wit httpbis - https://www.rfc-editor.org/errata/rfc9110 + https://www.rfc-editor.org/errata/rfc9110/ 10.17487/RFC9110
@@ -307956,7 +307956,7 @@ selected by the local BGP speaker's Decision Process.

IETF wit httpbis - https://www.rfc-editor.org/errata/rfc9111 + https://www.rfc-editor.org/errata/rfc9111/ 10.17487/RFC9111
@@ -308003,7 +308003,7 @@ selected by the local BGP speaker's Decision Process.

IETF wit httpbis - https://www.rfc-editor.org/errata/rfc9112 + https://www.rfc-editor.org/errata/rfc9112/ 10.17487/RFC9112
@@ -308044,7 +308044,7 @@ selected by the local BGP speaker's Decision Process.

IETF wit httpbis - https://www.rfc-editor.org/errata/rfc9113 + https://www.rfc-editor.org/errata/rfc9113/ 10.17487/RFC9113
@@ -308080,7 +308080,7 @@ selected by the local BGP speaker's Decision Process.

IETF wit quic - https://www.rfc-editor.org/errata/rfc9114 + https://www.rfc-editor.org/errata/rfc9114/ 10.17487/RFC9114
@@ -308120,7 +308120,7 @@ selected by the local BGP speaker's Decision Process.

IETF sec acme - https://www.rfc-editor.org/errata/rfc9115 + https://www.rfc-editor.org/errata/rfc9115/ 10.17487/RFC9115
@@ -308149,7 +308149,7 @@ selected by the local BGP speaker's Decision Process.

INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc9116 + https://www.rfc-editor.org/errata/rfc9116/ 10.17487/RFC9116
@@ -308415,7 +308415,7 @@ selected by the local BGP speaker's Decision Process.

IETF sec suit - https://www.rfc-editor.org/errata/rfc9124 + https://www.rfc-editor.org/errata/rfc9124/ 10.17487/RFC9124
@@ -308501,7 +308501,7 @@ selected by the local BGP speaker's Decision Process.

IETF sec oauth - https://www.rfc-editor.org/errata/rfc9126 + https://www.rfc-editor.org/errata/rfc9126/ 10.17487/RFC9126
@@ -308766,7 +308766,7 @@ selected by the local BGP speaker's Decision Process.

IETF sec dots - https://www.rfc-editor.org/errata/rfc9132 + https://www.rfc-editor.org/errata/rfc9132/ 10.17487/RFC9132
@@ -308860,7 +308860,7 @@ selected by the local BGP speaker's Decision Process.

IETF wit avtcore - https://www.rfc-editor.org/errata/rfc9134 + https://www.rfc-editor.org/errata/rfc9134/ 10.17487/RFC9134
@@ -308906,7 +308906,7 @@ selected by the local BGP speaker's Decision Process.

IETF rtg bess - https://www.rfc-editor.org/errata/rfc9135 + https://www.rfc-editor.org/errata/rfc9135/ 10.17487/RFC9135
@@ -309161,7 +309161,7 @@ selected by the local BGP speaker's Decision Process.

PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc9141 + https://www.rfc-editor.org/errata/rfc9141/ 10.17487/RFC9141
@@ -309229,7 +309229,7 @@ selected by the local BGP speaker's Decision Process.

IETF sec curdle - https://www.rfc-editor.org/errata/rfc9142 + https://www.rfc-editor.org/errata/rfc9142/ 10.17487/RFC9142
@@ -309446,7 +309446,7 @@ selected by the local BGP speaker's Decision Process.

IETF sec tls - https://www.rfc-editor.org/errata/rfc9147 + https://www.rfc-editor.org/errata/rfc9147/ 10.17487/RFC9147
@@ -309574,7 +309574,7 @@ selected by the local BGP speaker's Decision Process.

INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc9151 + https://www.rfc-editor.org/errata/rfc9151/ 10.17487/RFC9151
@@ -310171,7 +310171,7 @@ selected by the local BGP speaker's Decision Process.

IETF art regext - https://www.rfc-editor.org/errata/rfc9167 + https://www.rfc-editor.org/errata/rfc9167/ 10.17487/RFC9167
@@ -310309,7 +310309,7 @@ selected by the local BGP speaker's Decision Process.

IETF int dtn - https://www.rfc-editor.org/errata/rfc9171 + https://www.rfc-editor.org/errata/rfc9171/ 10.17487/RFC9171
@@ -310345,7 +310345,7 @@ selected by the local BGP speaker's Decision Process.

IETF int dtn - https://www.rfc-editor.org/errata/rfc9172 + https://www.rfc-editor.org/errata/rfc9172/ 10.17487/RFC9172
@@ -310384,7 +310384,7 @@ selected by the local BGP speaker's Decision Process.

IETF int dtn - https://www.rfc-editor.org/errata/rfc9173 + https://www.rfc-editor.org/errata/rfc9173/ 10.17487/RFC9173
@@ -310660,7 +310660,7 @@ selected by the local BGP speaker's Decision Process.

INFORMATIONAL INFORMATIONAL IRTF - https://www.rfc-editor.org/errata/rfc9180 + https://www.rfc-editor.org/errata/rfc9180/ 10.17487/RFC9180
@@ -310933,7 +310933,7 @@ selected by the local BGP speaker's Decision Process.

INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc9187 + https://www.rfc-editor.org/errata/rfc9187/ 10.17487/RFC9187
@@ -311029,7 +311029,7 @@ selected by the local BGP speaker's Decision Process.

IETF sec emu - https://www.rfc-editor.org/errata/rfc9190 + https://www.rfc-editor.org/errata/rfc9190/ 10.17487/RFC9190
@@ -311236,7 +311236,7 @@ selected by the local BGP speaker's Decision Process.

IETF ops netconf - https://www.rfc-editor.org/errata/rfc9196 + https://www.rfc-editor.org/errata/rfc9196/ 10.17487/RFC9196
@@ -311277,7 +311277,7 @@ selected by the local BGP speaker's Decision Process.

IETF ops ippm - https://www.rfc-editor.org/errata/rfc9197 + https://www.rfc-editor.org/errata/rfc9197/ 10.17487/RFC9197
@@ -311413,7 +311413,7 @@ selected by the local BGP speaker's Decision Process.

IETF sec ace - https://www.rfc-editor.org/errata/rfc9200 + https://www.rfc-editor.org/errata/rfc9200/ 10.17487/RFC9200
@@ -311495,7 +311495,7 @@ selected by the local BGP speaker's Decision Process.

IETF sec ace - https://www.rfc-editor.org/errata/rfc9202 + https://www.rfc-editor.org/errata/rfc9202/ 10.17487/RFC9202
@@ -311581,7 +311581,7 @@ selected by the local BGP speaker's Decision Process.

IETF wit quic - https://www.rfc-editor.org/errata/rfc9204 + https://www.rfc-editor.org/errata/rfc9204/ 10.17487/RFC9204
@@ -312001,7 +312001,7 @@ selected by the local BGP speaker's Decision Process.

IETF sec lamps - https://www.rfc-editor.org/errata/rfc9216 + https://www.rfc-editor.org/errata/rfc9216/ 10.17487/RFC9216
@@ -312061,7 +312061,7 @@ selected by the local BGP speaker's Decision Process.

IETF wit httpbis - https://www.rfc-editor.org/errata/rfc9218 + https://www.rfc-editor.org/errata/rfc9218/ 10.17487/RFC9218
@@ -312316,7 +312316,7 @@ selected by the local BGP speaker's Decision Process.

INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc9225 + https://www.rfc-editor.org/errata/rfc9225/ 10.17487/RFC9225
@@ -312484,7 +312484,7 @@ selected by the local BGP speaker's Decision Process.

EXPERIMENTAL EXPERIMENTAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc9230 + https://www.rfc-editor.org/errata/rfc9230/ 10.17487/RFC9230
@@ -312674,7 +312674,7 @@ selected by the local BGP speaker's Decision Process.

IETF wit tcpm - https://www.rfc-editor.org/errata/rfc9235 + https://www.rfc-editor.org/errata/rfc9235/ 10.17487/RFC9235
@@ -312824,7 +312824,7 @@ selected by the local BGP speaker's Decision Process.

IETF art dispatch - https://www.rfc-editor.org/errata/rfc9239 + https://www.rfc-editor.org/errata/rfc9239/ 10.17487/RFC9239
@@ -312938,7 +312938,7 @@ selected by the local BGP speaker's Decision Process.

IETF sec ipsecme - https://www.rfc-editor.org/errata/rfc9242 + https://www.rfc-editor.org/errata/rfc9242/ 10.17487/RFC9242
@@ -313224,7 +313224,7 @@ selected by the local BGP speaker's Decision Process.

IETF int ntp - https://www.rfc-editor.org/errata/rfc9249 + https://www.rfc-editor.org/errata/rfc9249/ 10.17487/RFC9249
@@ -313264,7 +313264,7 @@ selected by the local BGP speaker's Decision Process.

IETF int dprive - https://www.rfc-editor.org/errata/rfc9250 + https://www.rfc-editor.org/errata/rfc9250/ 10.17487/RFC9250
@@ -313353,7 +313353,7 @@ selected by the local BGP speaker's Decision Process.

IETF rtg bess - https://www.rfc-editor.org/errata/rfc9252 + https://www.rfc-editor.org/errata/rfc9252/ 10.17487/RFC9252
@@ -313389,7 +313389,7 @@ selected by the local BGP speaker's Decision Process.

IETF art calext - https://www.rfc-editor.org/errata/rfc9253 + https://www.rfc-editor.org/errata/rfc9253/ 10.17487/RFC9253
@@ -313549,7 +313549,7 @@ selected by the local BGP speaker's Decision Process.

IETF sec tls - https://www.rfc-editor.org/errata/rfc9257 + https://www.rfc-editor.org/errata/rfc9257/ 10.17487/RFC9257
@@ -313669,7 +313669,7 @@ selected by the local BGP speaker's Decision Process.

IETF wit tsvwg - https://www.rfc-editor.org/errata/rfc9260 + https://www.rfc-editor.org/errata/rfc9260/ 10.17487/RFC9260
@@ -314291,7 +314291,7 @@ selected by the local BGP speaker's Decision Process.

IETF ops dnsop - https://www.rfc-editor.org/errata/rfc9276 + https://www.rfc-editor.org/errata/rfc9276/ 10.17487/RFC9276
@@ -314321,7 +314321,7 @@ selected by the local BGP speaker's Decision Process.

IETF art cbor - https://www.rfc-editor.org/errata/rfc9277 + https://www.rfc-editor.org/errata/rfc9277/ 10.17487/RFC9277
@@ -314436,7 +314436,7 @@ selected by the local BGP speaker's Decision Process.

INFORMATIONAL INFORMATIONAL IAB - https://www.rfc-editor.org/errata/rfc9280 + https://www.rfc-editor.org/errata/rfc9280/ 10.17487/RFC9280
@@ -314612,7 +314612,7 @@ selected by the local BGP speaker's Decision Process.

INFORMATIONAL IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc9285 + https://www.rfc-editor.org/errata/rfc9285/ 10.17487/RFC9285
@@ -314651,7 +314651,7 @@ selected by the local BGP speaker's Decision Process.

IETF ops sidrops - https://www.rfc-editor.org/errata/rfc9286 + https://www.rfc-editor.org/errata/rfc9286/ 10.17487/RFC9286
@@ -314840,7 +314840,7 @@ selected by the local BGP speaker's Decision Process.

IETF ops opsawg - https://www.rfc-editor.org/errata/rfc9291 + https://www.rfc-editor.org/errata/rfc9291/ 10.17487/RFC9291
@@ -314914,7 +314914,7 @@ selected by the local BGP speaker's Decision Process.

IETF wit tcpm - https://www.rfc-editor.org/errata/rfc9293 + https://www.rfc-editor.org/errata/rfc9293/ 10.17487/RFC9293
@@ -315307,7 +315307,7 @@ selected by the local BGP speaker's Decision Process.

IETF rtg lisp - https://www.rfc-editor.org/errata/rfc9303 + https://www.rfc-editor.org/errata/rfc9303/ 10.17487/RFC9303
@@ -315553,7 +315553,7 @@ selected by the local BGP speaker's Decision Process.

PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc9309 + https://www.rfc-editor.org/errata/rfc9309/ 10.17487/RFC9309
@@ -315651,7 +315651,7 @@ selected by the local BGP speaker's Decision Process.

IETF wit quic - https://www.rfc-editor.org/errata/rfc9312 + https://www.rfc-editor.org/errata/rfc9312/ 10.17487/RFC9312
@@ -315850,7 +315850,7 @@ selected by the local BGP speaker's Decision Process.

INFORMATIONAL INFORMATIONAL IRTF - https://www.rfc-editor.org/errata/rfc9316 + https://www.rfc-editor.org/errata/rfc9316/ 10.17487/RFC9316
@@ -316042,7 +316042,7 @@ selected by the local BGP speaker's Decision Process.

INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc9321 + https://www.rfc-editor.org/errata/rfc9321/ 10.17487/RFC9321
@@ -316324,7 +316324,7 @@ selected by the local BGP speaker's Decision Process.

IETF wit avtcore - https://www.rfc-editor.org/errata/rfc9328 + https://www.rfc-editor.org/errata/rfc9328/ 10.17487/RFC9328
@@ -316605,7 +316605,7 @@ selected by the local BGP speaker's Decision Process.

IETF sec rats - https://www.rfc-editor.org/errata/rfc9334 + https://www.rfc-editor.org/errata/rfc9334/ 10.17487/RFC9334
@@ -316749,7 +316749,7 @@ selected by the local BGP speaker's Decision Process.

IETF sec cose - https://www.rfc-editor.org/errata/rfc9338 + https://www.rfc-editor.org/errata/rfc9338/ 10.17487/RFC9338
@@ -317136,7 +317136,7 @@ selected by the local BGP speaker's Decision Process.

IETF sec ipsecme - https://www.rfc-editor.org/errata/rfc9347 + https://www.rfc-editor.org/errata/rfc9347/ 10.17487/RFC9347
@@ -317239,7 +317239,7 @@ selected by the local BGP speaker's Decision Process.

IETF rtg lsr - https://www.rfc-editor.org/errata/rfc9350 + https://www.rfc-editor.org/errata/rfc9350/ 10.17487/RFC9350
@@ -317608,7 +317608,7 @@ to 2-Way state when operating in OSPF BFD strict-mode.

IETF ops ippm - https://www.rfc-editor.org/errata/rfc9359 + https://www.rfc-editor.org/errata/rfc9359/ 10.17487/RFC9359
@@ -318367,7 +318367,7 @@ to 2-Way state when operating in OSPF BFD strict-mode.

INFORMATIONAL INFORMATIONAL IRTF - https://www.rfc-editor.org/errata/rfc9380 + https://www.rfc-editor.org/errata/rfc9380/ 10.17487/RFC9380
@@ -319060,7 +319060,7 @@ to 2-Way state when operating in OSPF BFD strict-mode.

IETF sec lamps - https://www.rfc-editor.org/errata/rfc9399 + https://www.rfc-editor.org/errata/rfc9399/ 10.17487/RFC9399
@@ -319836,7 +319836,7 @@ between SIP-based enterprise telephony networks and the ITSP.

IETF sec mls - https://www.rfc-editor.org/errata/rfc9420 + https://www.rfc-editor.org/errata/rfc9420/ 10.17487/RFC9420
@@ -319874,7 +319874,7 @@ between SIP-based enterprise telephony networks and the ITSP.

IETF wit httpbis - https://www.rfc-editor.org/errata/rfc9421 + https://www.rfc-editor.org/errata/rfc9421/ 10.17487/RFC9421
@@ -319980,7 +319980,7 @@ between SIP-based enterprise telephony networks and the ITSP.

IETF ops opsec - https://www.rfc-editor.org/errata/rfc9424 + https://www.rfc-editor.org/errata/rfc9424/ 10.17487/RFC9424
@@ -320424,7 +320424,7 @@ between SIP-based enterprise telephony networks and the ITSP.

IETF wit tsvwg - https://www.rfc-editor.org/errata/rfc9435 + https://www.rfc-editor.org/errata/rfc9435/ 10.17487/RFC9435
@@ -320565,7 +320565,7 @@ between SIP-based enterprise telephony networks and the ITSP.

IETF wit tcpm - https://www.rfc-editor.org/errata/rfc9438 + https://www.rfc-editor.org/errata/rfc9438/ 10.17487/RFC9438
@@ -321061,7 +321061,7 @@ metric.

IETF sec oauth - https://www.rfc-editor.org/errata/rfc9449 + https://www.rfc-editor.org/errata/rfc9449/ 10.17487/RFC9449
@@ -321104,7 +321104,7 @@ metric.

IETF rtg raw - https://www.rfc-editor.org/errata/rfc9450 + https://www.rfc-editor.org/errata/rfc9450/ 10.17487/RFC9450
@@ -321388,7 +321388,7 @@ metric.

IETF wit httpapi - https://www.rfc-editor.org/errata/rfc9457 + https://www.rfc-editor.org/errata/rfc9457/ 10.17487/RFC9457
@@ -321424,7 +321424,7 @@ metric.

IETF sec ohai - https://www.rfc-editor.org/errata/rfc9458 + https://www.rfc-editor.org/errata/rfc9458/ 10.17487/RFC9458
@@ -321503,7 +321503,7 @@ metric.

IETF ops dnsop - https://www.rfc-editor.org/errata/rfc9460 + https://www.rfc-editor.org/errata/rfc9460/ 10.17487/RFC9460
@@ -321633,7 +321633,7 @@ metric.

IETF int add - https://www.rfc-editor.org/errata/rfc9463 + https://www.rfc-editor.org/errata/rfc9463/ 10.17487/RFC9463
@@ -321914,7 +321914,7 @@ metric.

IETF sec oauth - https://www.rfc-editor.org/errata/rfc9470 + https://www.rfc-editor.org/errata/rfc9470/ 10.17487/RFC9470
@@ -322255,7 +322255,7 @@ metric.

IETF sec lamps - https://www.rfc-editor.org/errata/rfc9480 + https://www.rfc-editor.org/errata/rfc9480/ 10.17487/RFC9480
@@ -322298,7 +322298,7 @@ profile from Appendix D.2 of RFC 4210.

IETF sec lamps - https://www.rfc-editor.org/errata/rfc9481 + https://www.rfc-editor.org/errata/rfc9481/ 10.17487/RFC9481
@@ -322362,7 +322362,7 @@ profile from Appendix D.2 of RFC 4210.

IETF sec lamps - https://www.rfc-editor.org/errata/rfc9483 + https://www.rfc-editor.org/errata/rfc9483/ 10.17487/RFC9483
@@ -322450,7 +322450,7 @@ profile from Appendix D.2 of RFC 4210.

IETF art jsonpath - https://www.rfc-editor.org/errata/rfc9485 + https://www.rfc-editor.org/errata/rfc9485/ 10.17487/RFC9485
@@ -322519,7 +322519,7 @@ profile from Appendix D.2 of RFC 4210.

IETF ops opsawg - https://www.rfc-editor.org/errata/rfc9487 + https://www.rfc-editor.org/errata/rfc9487/ 10.17487/RFC9487
@@ -322758,7 +322758,7 @@ profile from Appendix D.2 of RFC 4210.

IETF sec secevent - https://www.rfc-editor.org/errata/rfc9493 + https://www.rfc-editor.org/errata/rfc9493/ 10.17487/RFC9493
@@ -322912,7 +322912,7 @@ profile from Appendix D.2 of RFC 4210.

INFORMATIONAL INFORMATIONAL IRTF - https://www.rfc-editor.org/errata/rfc9497 + https://www.rfc-editor.org/errata/rfc9497/ 10.17487/RFC9497
@@ -322988,7 +322988,7 @@ profile from Appendix D.2 of RFC 4210.

IETF ops dnsop - https://www.rfc-editor.org/errata/rfc9499 + https://www.rfc-editor.org/errata/rfc9499/ 10.17487/RFC9499
@@ -323233,7 +323233,7 @@ meetings and, if possible, related IETF-hosted events.

INFORMATIONAL INFORMATIONAL IRTF - https://www.rfc-editor.org/errata/rfc9505 + https://www.rfc-editor.org/errata/rfc9505/ 10.17487/RFC9505
@@ -323568,7 +323568,7 @@ meetings and, if possible, related IETF-hosted events.

IETF rtg lsr - https://www.rfc-editor.org/errata/rfc9513 + https://www.rfc-editor.org/errata/rfc9513/ 10.17487/RFC9513
@@ -323617,7 +323617,7 @@ meetings and, if possible, related IETF-hosted events.

IETF rtg idr - https://www.rfc-editor.org/errata/rfc9514 + https://www.rfc-editor.org/errata/rfc9514/ 10.17487/RFC9514
@@ -323778,7 +323778,7 @@ meetings and, if possible, related IETF-hosted events.

PROPOSED STANDARD IETF NON WORKING GROUP - https://www.rfc-editor.org/errata/rfc9519 + https://www.rfc-editor.org/errata/rfc9519/ 10.17487/RFC9519
@@ -323821,7 +323821,7 @@ meetings and, if possible, related IETF-hosted events.

IETF ops dnsop - https://www.rfc-editor.org/errata/rfc9520 + https://www.rfc-editor.org/errata/rfc9520/ 10.17487/RFC9520
@@ -323895,7 +323895,7 @@ meetings and, if possible, related IETF-hosted events.

IETF rtg teas - https://www.rfc-editor.org/errata/rfc9522 + https://www.rfc-editor.org/errata/rfc9522/ 10.17487/RFC9522
@@ -324006,7 +324006,7 @@ meetings and, if possible, related IETF-hosted events.

IETF sec uta - https://www.rfc-editor.org/errata/rfc9525 + https://www.rfc-editor.org/errata/rfc9525/ 10.17487/RFC9525
@@ -324049,7 +324049,7 @@ meetings and, if possible, related IETF-hosted events.

IETF int homenet - https://www.rfc-editor.org/errata/rfc9526 + https://www.rfc-editor.org/errata/rfc9526/ 10.17487/RFC9526
@@ -324206,7 +324206,7 @@ meetings and, if possible, related IETF-hosted events.

IETF wit httpbis - https://www.rfc-editor.org/errata/rfc9530 + https://www.rfc-editor.org/errata/rfc9530/ 10.17487/RFC9530
@@ -324467,7 +324467,7 @@ meetings and, if possible, related IETF-hosted events.

IETF art regext - https://www.rfc-editor.org/errata/rfc9537 + https://www.rfc-editor.org/errata/rfc9537/ 10.17487/RFC9537
@@ -324553,7 +324553,7 @@ meetings and, if possible, related IETF-hosted events.

IETF int dprive - https://www.rfc-editor.org/errata/rfc9539 + https://www.rfc-editor.org/errata/rfc9539/ 10.17487/RFC9539
@@ -324679,7 +324679,7 @@ meetings and, if possible, related IETF-hosted events.

IETF int intarea - https://www.rfc-editor.org/errata/rfc9542 + https://www.rfc-editor.org/errata/rfc9542/ 10.17487/RFC9542
@@ -324729,7 +324729,7 @@ meetings and, if possible, related IETF-hosted events.

IETF rtg teas - https://www.rfc-editor.org/errata/rfc9543 + https://www.rfc-editor.org/errata/rfc9543/ 10.17487/RFC9543
@@ -325088,7 +325088,7 @@ with its defined SLOs.

IETF rtg idr - https://www.rfc-editor.org/errata/rfc9552 + https://www.rfc-editor.org/errata/rfc9552/ 10.17487/RFC9552
@@ -325289,7 +325289,7 @@ with its defined SLOs.

IETF art sedate - https://www.rfc-editor.org/errata/rfc9557 + https://www.rfc-editor.org/errata/rfc9557/ 10.17487/RFC9557
@@ -325477,7 +325477,7 @@ been incorporated into this document. This document obsoletes RFC IETF art uuidrev - https://www.rfc-editor.org/errata/rfc9562 + https://www.rfc-editor.org/errata/rfc9562/ 10.17487/RFC9562 @@ -325543,7 +325543,7 @@ been incorporated into this document. This document obsoletes RFC INFORMATIONAL INFORMATIONAL INDEPENDENT - https://www.rfc-editor.org/errata/rfc9564 + https://www.rfc-editor.org/errata/rfc9564/ 10.17487/RFC9564 @@ -325686,7 +325686,7 @@ been incorporated into this document. This document obsoletes RFC IETF rtg rtgwg - https://www.rfc-editor.org/errata/rfc9568 + https://www.rfc-editor.org/errata/rfc9568/ 10.17487/RFC9568 @@ -326129,7 +326129,7 @@ been incorporated into this document. This document obsoletes RFC IETF sec lamps - https://www.rfc-editor.org/errata/rfc9579 + https://www.rfc-editor.org/errata/rfc9579/ 10.17487/RFC9579 @@ -326704,7 +326704,7 @@ been incorporated into this document. This document obsoletes RFC IETF sec ace - https://www.rfc-editor.org/errata/rfc9594 + https://www.rfc-editor.org/errata/rfc9594/ 10.17487/RFC9594 @@ -327171,7 +327171,7 @@ been incorporated into this document. This document obsoletes RFC IETF int add - https://www.rfc-editor.org/errata/rfc9606 + https://www.rfc-editor.org/errata/rfc9606/ 10.17487/RFC9606 @@ -327239,7 +327239,7 @@ been incorporated into this document. This document obsoletes RFC IETF sec lamps - https://www.rfc-editor.org/errata/rfc9608 + https://www.rfc-editor.org/errata/rfc9608/ 10.17487/RFC9608 @@ -327459,7 +327459,7 @@ been incorporated into this document. This document obsoletes RFC IETF ops dnsop - https://www.rfc-editor.org/errata/rfc9615 + https://www.rfc-editor.org/errata/rfc9615/ 10.17487/RFC9615 @@ -327632,7 +327632,7 @@ been incorporated into this document. This document obsoletes RFC INFORMATIONAL INFORMATIONAL IRTF - https://www.rfc-editor.org/errata/rfc9620 + https://www.rfc-editor.org/errata/rfc9620/ 10.17487/RFC9620 @@ -327995,7 +327995,7 @@ been incorporated into this document. This document obsoletes RFC IETF sec gnap - https://www.rfc-editor.org/errata/rfc9635 + https://www.rfc-editor.org/errata/rfc9635/ 10.17487/RFC9635 @@ -328721,7 +328721,7 @@ been incorporated into this document. This document obsoletes RFC IETF rtg ccamp - https://www.rfc-editor.org/errata/rfc9656 + https://www.rfc-editor.org/errata/rfc9656/ 10.17487/RFC9656 @@ -328967,7 +328967,7 @@ been incorporated into this document. This document obsoletes RFC IETF sec uta - https://www.rfc-editor.org/errata/rfc9662 + https://www.rfc-editor.org/errata/rfc9662/ 10.17487/RFC9662 @@ -329319,7 +329319,7 @@ been incorporated into this document. This document obsoletes RFC IETF int 6man - https://www.rfc-editor.org/errata/rfc9673 + https://www.rfc-editor.org/errata/rfc9673/ 10.17487/RFC9673 diff --git a/client/utilities/rfc-index.xml.test.ts b/client/utilities/rfc-index.xml.test.ts index d7cff57..0aac000 100644 --- a/client/utilities/rfc-index.xml.test.ts +++ b/client/utilities/rfc-index.xml.test.ts @@ -2,17 +2,15 @@ import fs from 'node:fs' import path from 'node:path' import { z } from 'zod' -import { zip } from 'lodash' import { vi, describe, beforeEach, afterEach, test, expect } from 'vitest' import { XMLParser } from 'fast-xml-parser' - import { renderRfcIndexDotXml } from './rfc-index-xml' import { PRIVATE_API_URL } from './url' +import { parseRFCId } from './rfc' import { ApiClient, type PaginatedRfcMetadataList } from '~/generated/red-client' -import { parseRFCId } from './rfc' const originalXMLString = fs .readFileSync(path.join(import.meta.dirname, 'rfc-index.xml'), 'utf-8') @@ -120,11 +118,19 @@ const filterByRFCEntry = (entry: Entry): entry is RFCEntry => { // {} // ) -const getRFCNumber = (rfcEntry: RFCEntry): string => { - const docIdItem = rfcEntry['rfc-entry'].find((item) => { - return !!item['doc-id'] +const getRFCItemByName = (rfcEntry: RFCEntry, key: string) => { + const item = rfcEntry['rfc-entry'].find((item) => { + return !!item[key] }) - if (!docIdItem) throw Error(`Couldn't find doc-id in ${rfcEntry}`) + if (!item) + throw Error( + `Couldn't find "${key}" in ${JSON.stringify(rfcEntry, null, 2)}` + ) + return item +} + +const getRFCNumber = (rfcEntry: RFCEntry): string => { + const docIdItem = getRFCItemByName(rfcEntry, 'doc-id') const rfcNumber = docIdItem['doc-id'][0]['#text'] const typeofRFCNumber = typeof rfcNumber !== 'string' if (typeofRFCNumber) { @@ -194,14 +200,21 @@ describe('renderRfcIndexDotXml', () => { const originalRFCNumber = getRFCNumber(originalRFC) const resultRFCNumber = getRFCNumber(resultRFC) - expect(resultRFCNumber).toEqual(originalRFCNumber) + expect(originalRFCNumber).toEqual(resultRFCNumber) if ( // FIXME: enable checking more RFCs i < 14 ) { - console.log(`Checking ${originalRFCNumber}`, resultRFC, originalRFC) - expect(resultRFC).toEqual(originalRFC) + // const keyToCheck = 'keywords' + // const originalItem = getRFCItemByName(originalRFC, keyToCheck) + // const resultItem = getRFCItemByName(resultRFC, keyToCheck) + // console.log( + // JSON.stringify(originalItem, null, 2), + // ' vs ', + // JSON.stringify(resultItem, null, 2) + // ) + expect(resultRFC, `RFC${originalRFCNumber}`).toEqual(originalRFC) } }) }) diff --git a/client/utilities/rfc.mocks.ts b/client/utilities/rfc.mocks.ts index c3290f1..3506b63 100644 --- a/client/utilities/rfc.mocks.ts +++ b/client/utilities/rfc.mocks.ts @@ -98,13 +98,22 @@ type ExtraFieldNeededSeeAlso = { number: number } +type ExtraFieldNeededKeyword = string + +type ExtraFieldNeededDraft = string + +type ExtraFieldNeededErrata = string + /** New fields needed in the RfcMetadata response */ export type ExtraFieldsNeeded = { + draft: ExtraFieldNeededDraft formats: ExtraFieldNeededFormat[] obsoletes: ExtraFieldNeededObsolete[] updates: ExtraFieldNeededUpdate[] is_also: ExtraFieldNeededIsAlso[] see_also: ExtraFieldNeededSeeAlso[] + keywords: ExtraFieldNeededKeyword[] + errata: ExtraFieldNeededErrata[] } const missingData: Record> = { @@ -119,11 +128,19 @@ const missingData: Record> = { }, 2: { authors: [{ name: 'Bill Duvall', person: 0 }], - formats: [{ type: 'TXT' }, { type: 'PDF' }, { type: 'HTML' }] + formats: [{ type: 'TXT' }, { type: 'PDF' }, { type: 'HTML' }], + errata: ['yes'] }, 3: { authors: [{ name: 'Steve D. Crocker', person: 0 }], - formats: [{ type: 'TXT' }, { type: 'HTML' }] + formats: [{ type: 'TXT' }, { type: 'HTML' }], + obsoleted_by: [ + { + id: 10, + number: 10, + title: 'Documentation conventions' + } + ] }, 4: { authors: [{ name: 'E. B. Shapiro', person: 0 }], @@ -131,7 +148,8 @@ const missingData: Record> = { }, 5: { authors: [{ name: 'J. Rulifson', person: 0 }], - formats: [{ type: 'TXT' }, { type: 'HTML' }] + formats: [{ type: 'TXT' }, { type: 'HTML' }], + errata: ['yes'] }, 6: { authors: [{ name: 'S.D. Crocker.', person: 0 }], diff --git a/client/utilities/rfc.ts b/client/utilities/rfc.ts index 3c5d87a..ba58275 100644 --- a/client/utilities/rfc.ts +++ b/client/utilities/rfc.ts @@ -120,3 +120,27 @@ export const formatTitlePlaintext = (title: string) => { return `${parts.type}${NONBREAKING_SPACE}${parts.number}` } + +type Author = RfcMetadata['authors'][number] + +/** + * Formats author names into an initialised format, eg. + * author.name: + * * "First Name" becomes "F. Name" + * * "First Second Name" becomes "F.S. Name" + * ...and if they're an editor they get an "Ed." suffix + */ +export const formatAuthor = (author: Author): string => { + const name = author.name + .split(/[\s.]/g) + .filter(Boolean) + .reduce((acc, item, index, arr) => { + return `${acc}${ + index === arr.length - 1 ? + ` ${item}` + : `${item.substring(0, 1).toUpperCase()}.` + }` + }, '') + + return author.affiliation === 'Editor' ? `${name}, Ed.` : name +} diff --git a/client/utilities/url.ts b/client/utilities/url.ts index c3aac2f..8b6425e 100644 --- a/client/utilities/url.ts +++ b/client/utilities/url.ts @@ -24,7 +24,7 @@ export const rfcCitePathBuilder = ( switch (format) { case 'txt': - return `https://www.rfc-editor.org/refs/${parsedRfcId.type.toLowerCase()}${parsedRfcId.number}.txt` + return `${PUBLIC_SITE}refs/${parsedRfcId.type.toLowerCase()}${parsedRfcId.number}.txt` case 'xml': return `https://bib.ietf.org/public/rfc/bibxml/reference.${parsedRfcId.type.toUpperCase()}.${parsedRfcId.number}.xml` case 'bibTeX': @@ -37,10 +37,16 @@ export const rfcFormatPathBuilder = (rfcId: string, format: 'html'): string => { switch (format) { case 'html': - return `https://www.rfc-editor.org/rfc/${parsedRfcId.type.toLowerCase()}${parsedRfcId.number}.html` + return `${PUBLIC_SITE}rfc/${parsedRfcId.type.toLowerCase()}${parsedRfcId.number}.html` } } +export const rfcErrataPathBuilder = (rfcId: string): string => { + const parsedRfcId = parseRFCId(rfcId) + + return `${PUBLIC_SITE}errata/${parsedRfcId.type.toLowerCase()}${parsedRfcId.number}/` +} + export const authorPathBuilder = (author: Rfc['authors'][number]): string => { return `mailto:${author.email}` }