From d142f284de7e663f3dc84e45ab605611b03911e1 Mon Sep 17 00:00:00 2001 From: James M Snell Date: Sun, 5 Nov 2023 21:31:47 +0000 Subject: [PATCH] Update index.bs Fixup alpn and sni options/socketinfo --- index.bs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/index.bs b/index.bs index c4fbb25..0036cf1 100644 --- a/index.bs +++ b/index.bs @@ -93,6 +93,8 @@ The {{Socket}} class is an instance of the [=socket=] concept. It should not be dictionary SocketInfo { DOMString remoteAddress = null; DOMString localAddress = null; + DOMString sni = null; + DOMString[] alpn = []; }; [Exposed=*] @@ -280,6 +282,8 @@ enum SecureTransportKind { "off", "on", "starttls" }; dictionary SocketOptions { SecureTransportKind secureTransport = "off"; boolean allowHalfOpen = false; + DOMString sni = null; + DOMString[] alpn = []; }; [Exposed=*]