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.
27 lines
483 B
27 lines
483 B
var common = require('../common');
|
|
var assert = require('assert');
|
|
var net = require('net');
|
|
|
|
process.stdin.destroy();
|
|
|
|
var accepted = null;
|
|
var server = net.createServer(function(socket) {
|
|
console.log('accepted');
|
|
accepted = socket;
|
|
socket.end();
|
|
server.close();
|
|
});
|
|
|
|
|
|
server.listen(common.PORT, function() {
|
|
console.log('listening...');
|
|
assert.equal(server.fd, 0);
|
|
|
|
net.createConnection(common.PORT);
|
|
});
|
|
|
|
|
|
process.on('exit', function() {
|
|
assert.ok(accepted);
|
|
});
|
|
|
|
|