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.
28 lines
682 B
28 lines
682 B
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const net = require('net');
|
|
|
|
var server = net.createServer(function(s) {
|
|
console.error('SERVER: got connection');
|
|
s.end();
|
|
});
|
|
|
|
server.listen(0, common.mustCall(function() {
|
|
var 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();
|
|
}));
|
|
}));
|
|
|