mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.2 KiB
56 lines
1.2 KiB
'use strict';
|
|
const common = require('../common');
|
|
const fs = require('fs');
|
|
|
|
if (!common.hasCrypto) {
|
|
common.skip('missing crypto');
|
|
return;
|
|
}
|
|
const https = require('https');
|
|
|
|
const options = {
|
|
key: fs.readFileSync(common.fixturesDir + '/keys/agent1-key.pem'),
|
|
cert: fs.readFileSync(common.fixturesDir + '/keys/agent1-cert.pem')
|
|
};
|
|
|
|
var connections = {};
|
|
|
|
var server = https.createServer(options, function(req, res) {
|
|
var interval = setInterval(function() {
|
|
res.write('data');
|
|
}, 1000);
|
|
interval.unref();
|
|
});
|
|
|
|
server.on('connection', function(connection) {
|
|
var key = connection.remoteAddress + ':' + connection.remotePort;
|
|
connection.on('close', function() {
|
|
delete connections[key];
|
|
});
|
|
connections[key] = connection;
|
|
});
|
|
|
|
function shutdown() {
|
|
server.close(common.mustCall(function() {}));
|
|
|
|
for (var key in connections) {
|
|
connections[key].destroy();
|
|
delete connections[key];
|
|
}
|
|
}
|
|
|
|
server.listen(0, function() {
|
|
var requestOptions = {
|
|
hostname: '127.0.0.1',
|
|
port: this.address().port,
|
|
path: '/',
|
|
method: 'GET',
|
|
rejectUnauthorized: false
|
|
};
|
|
|
|
var req = https.request(requestOptions, function(res) {
|
|
res.on('data', function(d) {});
|
|
setImmediate(shutdown);
|
|
});
|
|
req.end();
|
|
});
|
|
|