Home
last modified time | relevance | path

Searched refs:keylog (Results 1 - 4 of 4) sorted by relevance

/third_party/node/src/quic/
H A Dtlscontext.h43 // When true, TLS keylog data will be emitted to the JavaScript session.
44 bool keylog = false; member
111 // "keylog" event. Each keylog line is emitted to JavaScript where it can be
113 // keylog file that can be consumed by tools like Wireshark to intercept and
H A Dbindingdata.h87 V(keylog, "keylog") \
H A Dtlscontext.cc149 if (options.keylog) SSL_CTX_set_keylog_callback(ctx.get(), KeylogCallback); in InitializeSecureContext()
573 if (!SET(keylog) || !SET(reject_unauthorized) || !SET(enable_tls_trace) || in From()
/third_party/node/lib/
H A D_http_agent.js190 // Don't emit keylog events unless there is a listener for them.
197 if (eventName === 'keylog') {
199 // Future sockets will listen on keylog at creation.
201 this[kOnKeylog] = function onkeylog(keylog) {
202 agent.emit('keylog', keylog, this);
204 // Existing sockets will start listening on keylog now.
207 sockets[i].on('keylog', this[kOnKeylog]);
420 s.on('keylog', agent[kOnKeylog]);

Completed in 3 milliseconds