mirror of
https://github.com/nodejs/node.git
synced 2025-05-09 03:18:24 +00:00

Manually fix issues that eslint --fix couldn't do automatically. PR-URL: https://github.com/nodejs/node/pull/10685 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io>
29 lines
686 B
JavaScript
29 lines
686 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const net = require('net');
|
|
|
|
const server = net.createServer(function(s) {
|
|
console.error('SERVER: got connection');
|
|
s.end();
|
|
});
|
|
|
|
server.listen(0, common.mustCall(function() {
|
|
const c = net.createConnection(this.address().port);
|
|
c.on('close', common.mustCall(function() {
|
|
console.error('connection closed');
|
|
assert.strictEqual(c._handle, null);
|
|
assert.doesNotThrow(function() {
|
|
c.setNoDelay();
|
|
c.setKeepAlive();
|
|
c.bufferSize;
|
|
c.pause();
|
|
c.resume();
|
|
c.address();
|
|
c.remoteAddress;
|
|
c.remotePort;
|
|
});
|
|
server.close();
|
|
}));
|
|
}));
|