Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update index.bs #25

Merged
merged 3 commits into from
Nov 5, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
jasnell marked this conversation as resolved.
Show resolved Hide resolved
DOMString[] alpn = [];
jasnell marked this conversation as resolved.
Show resolved Hide resolved
};

[Exposed=*]
Expand Down Expand Up @@ -280,6 +282,8 @@ enum SecureTransportKind { "off", "on", "starttls" };
dictionary SocketOptions {
SecureTransportKind secureTransport = "off";
boolean allowHalfOpen = false;
DOMString sni = null;
DOMString[] alpn = [];
};

[Exposed=*]
Expand Down
Loading