Sha256: 74a52501a990b84f06f3db25a85cdf0692c9c6dea9d6ab343a9e2ab5cfcf3f7c
Contents?: true
Size: 1.17 KB
Versions: 5
Compression:
Stored size: 1.17 KB
Contents
'use strict'; // Create an ssl server. First connection, validate that not resume. // Cache session and close connection. Use session on second connection. // ASSERT resumption. var common = require('../common'); var assert = require('assert'); if (!common.hasCrypto) { common.skip('missing crypto'); return; } var tls = require('tls'); var fs = require('fs'); var options = { key: fs.readFileSync(common.fixturesDir + '/keys/agent2-key.pem'), cert: fs.readFileSync(common.fixturesDir + '/keys/agent2-cert.pem') }; var big = Buffer.alloc(2 * 1024 * 1024, 'Y'); // create server var server = tls.createServer(options, common.mustCall(function(socket) { socket.end(big); socket.destroySoon(); })); // start listening server.listen(0, common.mustCall(function() { var client = tls.connect({ port: this.address().port, rejectUnauthorized: false }, common.mustCall(function() { var bytesRead = 0; client.on('readable', function() { var d = client.read(); if (d) bytesRead += d.length; }); client.on('end', common.mustCall(function() { server.close(); assert.strictEqual(big.length, bytesRead); })); })); }));
Version data entries
5 entries across 4 versions & 1 rubygems