mirror of https://github.com/lukechilds/node.git
Ryan Dahl
14 years ago
2 changed files with 40 additions and 2 deletions
@ -0,0 +1,28 @@ |
|||||
|
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(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(); |
||||
|
}); |
||||
|
|
||||
|
}); |
||||
|
|
Loading…
Reference in new issue