From fc4677f2c5248734cceeebcc8001922a017b6f44 Mon Sep 17 00:00:00 2001 From: mal Date: Tue, 19 Nov 2024 19:12:21 +0000 Subject: [PATCH] Fix broken RFC4616 (SASL PLAIN) links (#545) --- _data/doc_sasl.yml | 4 ++-- _irc/index.md | 2 +- docs/sasl-mechs.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/_data/doc_sasl.yml b/_data/doc_sasl.yml index 05415aca..34ec305c 100644 --- a/_data/doc_sasl.yml +++ b/_data/doc_sasl.yml @@ -10,7 +10,7 @@ SASL: name: PLAIN description: PLAIN SASL mechanism required: true - ext_link: https://tools.ietf.org/search/rfc4616 + ext_link: https://tools.ietf.org/html/rfc4616 scram-sha-256: name: SCRAM-SHA-256 description: SASL SCRAM-SHA-256 mechanism @@ -20,4 +20,4 @@ SASL: name: OAUTHBEARER description: OAUTHBEARER SASL mechanism required: true - ext_link: https://www.rfc-editor.org/rfc/rfc7628 + ext_link: https://tools.ietf.org/html/rfc7628 diff --git a/_irc/index.md b/_irc/index.md index 2a4b820d..0ce80b0f 100644 --- a/_irc/index.md +++ b/_irc/index.md @@ -102,7 +102,7 @@ what to do if the authentication layer is disconnected or reconnected. IRC SASL authentication primarily uses the same mechanisms as SASL in other protocols. Most commonly: -* [PLAIN](https://tools.ietf.org/search/rfc4616) as defined by RFC 4616 +* [PLAIN](https://tools.ietf.org/html/rfc4616) as defined by RFC 4616 * [EXTERNAL](https://tools.ietf.org/html/rfc4422#appendix-A) as defined by RFC 4422 * [SCRAM-SHA-256](https://tools.ietf.org/html/rfc7677) as defined by RFC 7677 diff --git a/docs/sasl-mechs.md b/docs/sasl-mechs.md index 09bd9b29..cfcf2f6d 100644 --- a/docs/sasl-mechs.md +++ b/docs/sasl-mechs.md @@ -7,7 +7,7 @@ page-header: > --- IRC SASL authentication primarily uses the same mechanisms as SASL in other protocols. Most commonly: -* [PLAIN](https://tools.ietf.org/search/rfc4616) as defined by RFC 4616 +* [PLAIN](https://tools.ietf.org/html/rfc4616) as defined by RFC 4616 * [EXTERNAL](https://tools.ietf.org/html/rfc4422#appendix-A) as defined by RFC 4422 * [SCRAM-SHA-256](https://tools.ietf.org/html/rfc7677) as defined by RFC 7677