forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add setKeepAlive function, which enables and sets the TCP keep-alive …
…timer
- Loading branch information
1 parent
27ec33a
commit 5f8f561
Showing
4 changed files
with
81 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
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); | ||
|