mirror of https://github.com/lukechilds/node.git
Michael W
14 years ago
committed by
Ryan Dahl
2 changed files with 42 additions and 2 deletions
@ -0,0 +1,41 @@ |
|||
var net = require('net'); |
|||
var common = require('../common'); |
|||
var assert = require('assert'); |
|||
|
|||
var timeoutCount = 0; |
|||
|
|||
var server = net.createServer(function(stream){ |
|||
stream.setTimeout(100); |
|||
|
|||
stream.on('timeout', function () { |
|||
console.log("timeout"); |
|||
// try to reset the timeout.
|
|||
stream.write("WHAT."); |
|||
// don't worry, the socket didn't *really* time out, we're just thinking
|
|||
// it did.
|
|||
timeoutCount += 1; |
|||
}); |
|||
|
|||
stream.on('end', function () { |
|||
console.log("server side end"); |
|||
stream.end(); |
|||
}); |
|||
}); |
|||
|
|||
server.listen(common.PORT, function() { |
|||
var c = net.createConnection(common.PORT); |
|||
|
|||
c.on('data', function () { |
|||
c.end(); |
|||
}); |
|||
|
|||
c.on('end', function () { |
|||
console.log("client side end"); |
|||
server.close(); |
|||
}); |
|||
}); |
|||
|
|||
|
|||
process.on('exit', function () { |
|||
assert.equal(1, timeoutCount); |
|||
}); |
Loading…
Reference in new issue