The copyright and license notice is already in the LICENSE file. There is no justifiable reason to also require that it be included in every file, since the individual files are not individually distributed except as part of the entire package.
33 lines
708 B
JavaScript
33 lines
708 B
JavaScript
if (!process.versions.openssl) {
|
|
console.error('Skipping because node compiled without OpenSSL.');
|
|
process.exit(0);
|
|
}
|
|
|
|
var common = require('../common');
|
|
var tls = require('tls');
|
|
var fs = require('fs');
|
|
var net = require('net');
|
|
|
|
var options = {
|
|
key: fs.readFileSync(common.fixturesDir + '/keys/agent2-key.pem'),
|
|
cert: fs.readFileSync(common.fixturesDir + '/keys/agent2-cert.pem')
|
|
};
|
|
|
|
var server = tls.createServer(options, function(s) {
|
|
s.write('welcome!\n');
|
|
s.pipe(s);
|
|
});
|
|
|
|
server.listen(common.PORT, function() {
|
|
var c = net.createConnection(common.PORT);
|
|
|
|
c.on('connect', function() {
|
|
c.write('blah\nblah\nblah\n');
|
|
});
|
|
|
|
c.on('end', function() {
|
|
server.close();
|
|
});
|
|
|
|
});
|
|
|