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.
32 lines
766 B
32 lines
766 B
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const net = require('net');
|
|
|
|
var server = net.createServer({
|
|
allowHalfOpen: true
|
|
}, common.mustCall(function(socket) {
|
|
socket.resume();
|
|
socket.on('end', common.mustCall(function() {}));
|
|
socket.end();
|
|
}));
|
|
|
|
server.listen(0, function() {
|
|
var client = net.connect({
|
|
host: '127.0.0.1',
|
|
port: this.address().port,
|
|
allowHalfOpen: true
|
|
}, common.mustCall(function() {
|
|
console.error('client connect cb');
|
|
client.resume();
|
|
client.on('end', common.mustCall(function() {
|
|
setTimeout(function() {
|
|
assert(client.writable);
|
|
client.end();
|
|
}, 10);
|
|
}));
|
|
client.on('close', function() {
|
|
server.close();
|
|
});
|
|
}));
|
|
});
|
|
|