Home
last modified time | relevance | path

Searched refs:alpnProtocol (Results 1 – 10 of 10) sorted by relevance

/third_party/node/test/parallel/
Dtest-http2-https-fallback.js25 const { socket: { alpnProtocol } } = request.httpVersion === '2.0' ?
29 alpnProtocol, property
51 const { alpnProtocol, httpVersion } = JSON.parse(raw);
52 strictEqual(alpnProtocol, 'h2');
99 const { alpnProtocol, httpVersion } = JSON.parse(raw);
100 strictEqual(alpnProtocol, false);
Dtest-http2-create-client-secure-session.js24 assert.strictEqual(stream.session.alpnProtocol, 'h2');
34 alpnProtocol: socket.alpnProtocol property
53 assert.strictEqual(client.alpnProtocol, 'h2');
75 assert.strictEqual(jsonData.alpnProtocol, 'h2');
Dtest-http2-https-fallback-http-server-options.js21 const { socket: { alpnProtocol } } = request.httpVersion === '2.0' ?
25 alpnProtocol, property
79 const { alpnProtocol, httpVersion, userAgent } = JSON.parse(raw);
80 assert.strictEqual(alpnProtocol, false);
Dtest-tls-alpn-server-client.js29 results[serverIndex++].server = { ALPN: c.alpnProtocol };
44 results[clientIndex].client = { ALPN: client.alpnProtocol };
Dtest-tls-socket-constructor-alpn-options-parsing.js33 assert.strictEqual(tlsSocket.alpnProtocol, 'http/1.1');
Dtest-http2-create-client-session.js46 assert.strictEqual(client.alpnProtocol, 'h2c');
/third_party/node/lib/
D_tls_wrap.js474 this.alpnProtocol = null;
922 this.alpnProtocol = this._handle.getALPNNegotiatedProtocol();
931 'alpn', this.alpnProtocol,
/third_party/node/lib/internal/http2/
Dcore.js1012 this[kAlpnProtocol] = socket.alpnProtocol;
1247 get alpnProtocol() { getter in Http2Session
2952 if (socket.alpnProtocol === false || socket.alpnProtocol === 'http/1.1') {
/third_party/node/doc/api/
Dtls.md597 The `tlsSocket.alpnProtocol` property is a string that contains the selected
598 ALPN protocol. When ALPN has no selected protocol, `tlsSocket.alpnProtocol`
817 `tlsSocket.alpnProtocol` property can be checked to determine the negotiated
Dhttp2.md326 #### `http2session.alpnProtocol`
335 will return the value of the connected `TLSSocket`'s own `alpnProtocol`
2956 const { socket: { alpnProtocol } } = req.httpVersion === '2.0' ?
2960 alpnProtocol,