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.
39 lines
767 B
39 lines
767 B
'use strict';
|
|
require('../common');
|
|
var assert = require('assert');
|
|
var net = require('net');
|
|
var TCPWrap = process.binding('tcp_wrap').TCP;
|
|
|
|
var echoServer = net.createServer(function(conn) {
|
|
conn.end();
|
|
});
|
|
|
|
var ref = TCPWrap.prototype.ref;
|
|
var unref = TCPWrap.prototype.unref;
|
|
|
|
var refCount = 0;
|
|
|
|
TCPWrap.prototype.ref = function() {
|
|
ref.call(this);
|
|
refCount++;
|
|
assert.equal(refCount, 0);
|
|
};
|
|
|
|
TCPWrap.prototype.unref = function() {
|
|
unref.call(this);
|
|
refCount--;
|
|
assert.equal(refCount, -1);
|
|
};
|
|
|
|
echoServer.listen(0);
|
|
|
|
echoServer.on('listening', function() {
|
|
var sock = new net.Socket();
|
|
sock.unref();
|
|
sock.ref();
|
|
sock.connect(this.address().port);
|
|
sock.on('end', function() {
|
|
assert.equal(refCount, 0);
|
|
echoServer.close();
|
|
});
|
|
});
|
|
|