Lines Matching defs:const
2 const common = require('../common');
7 const assert = require('assert');
8 const tls = require('tls');
10 const CIPHERS = 'PSK+HIGH:TLS_AES_128_GCM_SHA256';
11 const USERS = {
15 const TEST_DATA = 'x';
17 const serverOptions = {
27 const cb = !error ?
30 const server = tls.createServer(serverOptions, cb);
32 const options = {
41 const client = tls.connect(options, common.mustCall(() => {
50 const client = tls.connect(options, common.mustNotCall());