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
770 B
28 lines
770 B
require("../common");
|
|
net = require('net');
|
|
|
|
var serverConnection;
|
|
var echoServer = net.createServer(function (connection) {
|
|
serverConnection = connection;
|
|
connection.setTimeout(0);
|
|
assert.notEqual(connection.setKeepAlive,undefined);
|
|
// send a keepalive packet after 1000 ms
|
|
connection.setKeepAlive(true,1000);
|
|
connection.addListener("end", function () {
|
|
connection.end();
|
|
});
|
|
});
|
|
echoServer.listen(PORT);
|
|
|
|
var clientConnection = net.createConnection(PORT);
|
|
clientConnection.setTimeout(0);
|
|
|
|
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();
|
|
}, 1200);
|
|
|
|
|