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=*]