From 36b3f9a3d7bc087531b44796b1e5bfb414d3b0ce Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Mon, 21 Mar 2022 01:54:49 +0000 Subject: [PATCH] fix http2 rfc links fixes #235 --- content/docs/http2.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/content/docs/http2.md b/content/docs/http2.md index f63c9a7..8267a9d 100644 --- a/content/docs/http2.md +++ b/content/docs/http2.md @@ -20,13 +20,13 @@ openssl = { version = "0.10", features = ["v110"] } {{< include-example example="http2" file="main.rs" section="main" >}} -Upgrades to HTTP/2 described in [RFC §3.2][rfcsection32] are not supported. Starting HTTP/2 with prior knowledge is supported for both cleartext and TLS connections ([RFC §3.4][rfcsection34]) (when using the lower level `actix-http` service builders). +Upgrades to HTTP/2 described in [RFC 7540 §3.2][rfcsection32] are not supported. Starting HTTP/2 with prior knowledge is supported for both cleartext and TLS connections ([RFC 7540 §3.4][rfcsection34]) (when using the lower level `actix-http` service builders). -> Check out [examples/tls][examples] for a concrete example. +> Check out [the TLS examples][examples] for concrete example. -[rfcsection32]: https://http2.github.io/http2-spec/#rfc.section.3.2 -[rfcsection34]: https://http2.github.io/http2-spec/#rfc.section.3.4 +[rfcsection32]: https://httpwg.org/specs/rfc7540.html#rfc.section.3.2 +[rfcsection34]: https://httpwg.org/specs/rfc7540.html#rfc.section.3.4 [bindrustls]: https://docs.rs/actix-web/4/actix_web/struct.HttpServer.html#method.bind_rustls [bindopenssl]: https://docs.rs/actix-web/4/actix_web/struct.HttpServer.html#method.bind_openssl [tlsalpn]: https://tools.ietf.org/html/rfc7301 -[examples]: https://github.com/actix/examples/tree/master/https-tls/rustls +[examples]: https://github.com/actix/examples/tree/master/https-tls