mirror of
https://github.com/nodejs/node.git
synced 2025-05-06 04:59:52 +00:00

Remove a handful of variables that are declared but never used in the tests for the net module. PR-URL: https://github.com/nodejs/node/pull/4430 Reviewed-By: Michaël Zasso <mic.besace@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
28 lines
633 B
JavaScript
28 lines
633 B
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var net = require('net');
|
|
|
|
var conns = 0;
|
|
|
|
var server = net.createServer(function(socket) {
|
|
conns++;
|
|
assert.equal(common.localhostIPv4, socket.localAddress);
|
|
assert.equal(socket.localPort, common.PORT);
|
|
socket.on('end', function() {
|
|
server.close();
|
|
});
|
|
socket.resume();
|
|
});
|
|
|
|
server.listen(common.PORT, common.localhostIPv4, function() {
|
|
var client = net.createConnection(common.PORT, common.localhostIPv4);
|
|
client.on('connect', function() {
|
|
client.end();
|
|
});
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(1, conns);
|
|
});
|