Lines Matching refs:tlsSocket
551 * `tlsSocket` {tls.TLSSocket} The `tls.TLSSocket` instance on which it was
566 server.on('keylog', (line, tlsSocket) => {
567 if (tlsSocket.remoteAddress !== '...')
695 * `tlsSocket` {tls.TLSSocket} The established TLS socket.
697 The `tlsSocket.authorized` property is a `boolean` indicating whether the
699 server. If `tlsSocket.authorized` is `false`, then `socket.authorizationError`
703 The `tlsSocket.alpnProtocol` property is a string that contains the selected
704 ALPN protocol. When ALPN has no selected protocol, `tlsSocket.alpnProtocol`
707 The `tlsSocket.servername` property is a string containing the server name
721 * `tlsSocket` {tls.TLSSocket} The `tls.TLSSocket` instance from which the
896 tlsSocket.on('keylog', (line) => logFile.write(line));
923 is the client's responsibility to check the `tlsSocket.authorized` property to
925 `tlsSocket.authorized === false`, then the error can be found by examining the
926 `tlsSocket.authorizationError` property. If ALPN was used, the
927 `tlsSocket.alpnProtocol` property can be checked to determine the negotiated
964 tlsSocket.once('session', (session) => {
973 ### `tlsSocket.address()`
992 ### `tlsSocket.authorizationError`
999 property is set only when `tlsSocket.authorized === false`.
1001 ### `tlsSocket.authorized`
1012 ### `tlsSocket.disableRenegotiation()`
1021 ### `tlsSocket.enableTrace()`
1035 ### `tlsSocket.encrypted`
1044 ### `tlsSocket.exportKeyingMaterial(length, label[, context])`
1068 const keyingMaterial = tlsSocket.exportKeyingMaterial(
1083 ### `tlsSocket.getCertificate()`
1100 ### `tlsSocket.getCipher()`
1138 ### `tlsSocket.getEphemeralKeyInfo()`
1155 ### `tlsSocket.getFinished()`
1173 ### `tlsSocket.getPeerCertificate([detailed])`
1296 ### `tlsSocket.getPeerFinished()`
1314 ### `tlsSocket.getPeerX509Certificate()`
1327 ### `tlsSocket.getProtocol()`
1350 ### `tlsSocket.getSession()`
1368 ### `tlsSocket.getSharedSigalgs()`
1381 ### `tlsSocket.getTLSTicket()`
1396 ### `tlsSocket.getX509Certificate()`
1409 ### `tlsSocket.isSessionReused()`
1419 ### `tlsSocket.localAddress`
1429 ### `tlsSocket.localPort`
1439 ### `tlsSocket.remoteAddress`
1450 ### `tlsSocket.remoteFamily`
1460 ### `tlsSocket.remotePort`
1470 ### `tlsSocket.renegotiate(options, callback)`
1492 `tlsSocket` has been destroyed, in which case `callback` will not be called
1497 The `tlsSocket.renegotiate()` method initiates a TLS renegotiation process.
1510 ### `tlsSocket.setMaxSendFragment(size)`
1520 The `tlsSocket.setMaxSendFragment()` method sets the maximum TLS fragment size.