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.

32 lines
962 B

'use strict';
14 years ago
var common = require('../common');
var assert = require('assert');
var net = require('net');
var serverConnection;
var clientConnection;
14 years ago
var echoServer = net.createServer(function(connection) {
serverConnection = connection;
setTimeout(function() {
// make sure both connections are still open
assert.equal(serverConnection.readyState, 'open');
assert.equal(clientConnection.readyState, 'open');
serverConnection.end();
clientConnection.end();
echoServer.close();
}, common.platformTimeout(100));
connection.setTimeout(0);
assert.notEqual(connection.setKeepAlive, undefined);
// send a keepalive packet after 50 ms
connection.setKeepAlive(true, common.platformTimeout(50));
connection.on('end', function() {
connection.end();
});
});
echoServer.listen(common.PORT);
echoServer.on('listening', function() {
clientConnection = net.createConnection(common.PORT);
clientConnection.setTimeout(0);
14 years ago
});