From 7de87a356ec815d123eb7b18ba191c0ea9fb2296 Mon Sep 17 00:00:00 2001 From: Marcin Rataj Date: Thu, 31 Oct 2024 17:27:39 +0100 Subject: [PATCH] docs(websockets): include explicit /sni/ example --- websockets/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/websockets/README.md b/websockets/README.md index 2d682498..9616c9bb 100644 --- a/websockets/README.md +++ b/websockets/README.md @@ -62,6 +62,7 @@ Examples: * `/ip4/192.0.2.0/tcp/1234/ws` (an insecure address with a TCP port) * `/ip4/192.0.2.0/tcp/1234/tls/ws` (a secure address with a TCP port) +* `/ip4/192.0.2.0/tcp/1234/tls/sni/foo.example.com/ws` (a secure address with resolved DNS address with explicit SNI value for TLS) * `/ip4/192.0.2.0/ws` (an insecure address that defaults to TCP port 80) * `/ip4/192.0.2.0/tls/ws` (a secure address that defaults to TCP port 443) * `/ip4/192.0.2.0/wss` (`/tls` may be omitted when using `/wss`)