blob: 1670c1b92b21fb048f440a346f5cbbc64f927467 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
'use strict';
const common = require('../common');
const net = require('net');
const assert = require('assert');
const server = net.createServer();
server.on('connection', common.mustCall());
// Ensure that the socket is not destroyed when the 'end' event is emitted.
server.listen(common.mustCall(function() {
const socket = net.createConnection({
port: server.address().port
});
socket.on('connect', common.mustCall(function() {
socket.on('end', common.mustCall(function() {
assert.strictEqual(socket.destroyed, false);
server.close();
}));
socket.end();
}));
}));
|