Home
last modified time | relevance | path

Searched refs:serverOptions (Results 1 – 22 of 22) sorted by relevance

/third_party/node/test/parallel/
Dtest-tls-alpn-server-client.js22 function runTest(clientsOptions, serverOptions, cb) { argument
23 serverOptions.key = loadPEM('agent2-key');
24 serverOptions.cert = loadPEM('agent2-cert');
28 const server = tls.createServer(serverOptions, function(c) {
62 const serverOptions = { variable in Test1
74 runTest(clientsOptions, serverOptions, function(results) {
94 const serverOptions = { variable in Test2
100 runTest(clientsOptions, serverOptions, function(results) {
120 const serverOptions = {};
130 runTest(clientsOptions, serverOptions, function(results) {
[all …]
Dtest-tls-client-verify.js68 const serverOptions = servers[index];
69 if (!serverOptions) {
74 const ok = serverOptions.ok;
76 if (serverOptions.key) {
77 serverOptions.key = loadPEM(serverOptions.key);
80 if (serverOptions.cert) {
81 serverOptions.cert = loadPEM(serverOptions.cert);
84 const server = tls.createServer(serverOptions, common.mustCall(function(s) {
Dtest-https-set-timeout-server.js36 const serverOptions = { variable
55 const server = https.createServer(serverOptions);
72 serverOptions,
96 serverOptions,
116 serverOptions,
142 const server = https.createServer(serverOptions, (req, res) => {
177 const server = https.createServer(serverOptions);
216 const server = https.createServer(serverOptions, common.mustCall(
Dtest-tls-addca.js17 const serverOptions = { variable
34 server: serverOptions,
45 server: serverOptions,
Dtest-tls-server-verify.js253 const serverOptions = { variable
265 serverOptions.secureOptions =
268 serverOptions.maxVersion = 'TLSv1.2';
272 const server = tls.Server(serverOptions, function handleConnection(c) {
Dtest-tls-retain-handle-no-abort.js13 const serverOptions = { variable
28 const server = tls.createServer(serverOptions, function(s) {
Dtest-http2-connect-tls-with-delay.js11 const serverOptions = { variable
16 const server = http2.createSecureServer(serverOptions, (req, res) => {
Dtest-http2-socket-proxy-handler-for-has.js11 const serverOptions = { variable
15 const server = http2.createSecureServer(serverOptions, common.mustCall(
Dtest-tls-sni-servername.js12 const serverOptions = { variable
25 const server = tls.createServer(serverOptions, common.mustNotCall());
Dtest-async-wrap-tlssocket-asyncreset.js12 const serverOptions = { variable
19 serverOptions,
Dtest-tls-sni-server-client.js36 const serverOptions = { variable
103 const server = tls.createServer(serverOptions, (c) => {
Dtest-https-max-headers-count.js11 const serverOptions = { variable
33 const server = https.createServer(serverOptions, common.mustCall((req, res) => {
Dtest-tls-psk-circuit.js17 const serverOptions = { variable
30 const server = tls.createServer(serverOptions, cb);
Dtest-tls-sni-option.js35 const serverOptions = { variable
139 const server = tls.createServer(serverOptions, (c) => {
Dtest-http2-connect.js77 const serverOptions = { variable
81 const server = createSecureServer(serverOptions);
/third_party/node/test/sequential/
Dtest-https-server-keep-alive-timeout.js14 const serverOptions = { variable
33 serverOptions,
59 const server = https.createServer(serverOptions, common.mustCall(3));
/third_party/spirv-tools/utils/vscode/
Dextension.js31 let serverOptions = { variable
48 let disposable = new LanguageClient('spirv', serverOptions, clientOptions).start();
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/
Dextension.js31 let serverOptions = { variable
48 let disposable = new LanguageClient('spirv', serverOptions, clientOptions).start();
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/
Dextension.js31 let serverOptions = { variable
48 let disposable = new LanguageClient('spirv', serverOptions, clientOptions).start();
/third_party/node/test/addons/openssl-client-cert-engine/
Dtest.js24 const serverOptions = { variable
32 const server = https.createServer(serverOptions, common.mustCall((req, res) => {
/third_party/node/test/addons/openssl-key-engine/
Dtest.js24 const serverOptions = { variable
32 const server = https.createServer(serverOptions, common.mustCall((req, res) => {
/third_party/node/test/pummel/
Dtest-regress-GH-892.js79 const serverOptions = { variable
86 const server = https.Server(serverOptions, function(req, res) {