We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
TLSSocket.alpnProtocol
node:tls
The TLSSocket.alpnProtocol property is referenced in the docs, but does not appear to actually exist:
deno/ext/node/polyfills/_tls_wrap.ts
Lines 62 to 78 in 66929de
In Deno.TlsConn we have .handshake that will return the ALPN protocol selected during the handshake:
.handshake
deno/ext/net/ops_tls.rs
Line 140 in 66929de
In Node, it is set on the TLSSocket instance:
TLSSocket
https://github.com/nodejs/node/blob/4988bb549e79a6b92391b4ff529f675da32c0687/lib/_tls_wrap.js#L1063 https://github.com/nodejs/node/blob/4988bb549e79a6b92391b4ff529f675da32c0687/src/crypto/crypto_tls.cc#L2078-L2102
The text was updated successfully, but these errors were encountered:
fix(node:tls): set TLSSocket.alpnProtocol for client connections (#26476
92ed4d3
) Towards #26127
c553666
satyarohith
No branches or pull requests
The
TLSSocket.alpnProtocol
property is referenced in the docs, but does not appear to actually exist:deno/ext/node/polyfills/_tls_wrap.ts
Lines 62 to 78 in 66929de
In Deno.TlsConn we have
.handshake
that will return the ALPN protocol selected during the handshake:deno/ext/net/ops_tls.rs
Line 140 in 66929de
In Node, it is set on the
TLSSocket
instance:https://github.com/nodejs/node/blob/4988bb549e79a6b92391b4ff529f675da32c0687/lib/_tls_wrap.js#L1063
https://github.com/nodejs/node/blob/4988bb549e79a6b92391b4ff529f675da32c0687/src/crypto/crypto_tls.cc#L2078-L2102
The text was updated successfully, but these errors were encountered: