mirror of https://github.com/lukechilds/node.git
Browse Source
PR-URL: https://github.com/nodejs/node/pull/9940 Reviewed-By: James M Snell <jasnell@gmail.com>v6.x
Danny Guo
8 years ago
committed by
Anna Henningsen
1 changed files with 13 additions and 17 deletions
@ -1,34 +1,30 @@ |
|||||
'use strict'; |
'use strict'; |
||||
var common = require('../common'); |
const common = require('../common'); |
||||
|
|
||||
if (!common.hasCrypto) { |
if (!common.hasCrypto) { |
||||
common.skip('missing crypto'); |
common.skip('missing crypto'); |
||||
return; |
return; |
||||
} |
} |
||||
var tls = require('tls'); |
|
||||
|
|
||||
var fs = require('fs'); |
const tls = require('tls'); |
||||
var net = require('net'); |
const fs = require('fs'); |
||||
|
const net = require('net'); |
||||
|
|
||||
var options = { |
const options = { |
||||
key: fs.readFileSync(common.fixturesDir + '/keys/agent2-key.pem'), |
key: fs.readFileSync(common.fixturesDir + '/keys/agent2-key.pem'), |
||||
cert: fs.readFileSync(common.fixturesDir + '/keys/agent2-cert.pem') |
cert: fs.readFileSync(common.fixturesDir + '/keys/agent2-cert.pem') |
||||
}; |
}; |
||||
|
|
||||
var server = tls.createServer(options, function(s) { |
const server = tls.createServer(options, common.fail); |
||||
s.write('welcome!\n'); |
|
||||
s.pipe(s); |
|
||||
}); |
|
||||
|
|
||||
server.listen(0, function() { |
server.listen(0, common.mustCall(function() { |
||||
var c = net.createConnection(this.address().port); |
const c = net.createConnection(this.address().port); |
||||
|
|
||||
c.on('connect', function() { |
c.on('connect', common.mustCall(function() { |
||||
c.write('blah\nblah\nblah\n'); |
c.write('blah\nblah\nblah\n'); |
||||
}); |
})); |
||||
|
|
||||
c.on('end', function() { |
c.on('end', common.mustCall(function() { |
||||
server.close(); |
server.close(); |
||||
}); |
})); |
||||
|
})); |
||||
}); |
|
||||
|
Loading…
Reference in new issue