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.
31 lines
785 B
31 lines
785 B
14 years ago
|
var common = require('../common');
|
||
14 years ago
|
var assert = require('assert');
|
||
14 years ago
|
var http = require('http');
|
||
15 years ago
|
|
||
14 years ago
|
var server = http.createServer(function(req, res) {
|
||
14 years ago
|
console.log('got request. setting 1 second timeout');
|
||
|
req.connection.setTimeout(500);
|
||
15 years ago
|
|
||
13 years ago
|
req.connection.on('timeout', function() {
|
||
14 years ago
|
req.connection.destroy();
|
||
14 years ago
|
common.debug('TIMEOUT');
|
||
15 years ago
|
server.close();
|
||
|
});
|
||
|
});
|
||
|
|
||
14 years ago
|
server.listen(common.PORT, function() {
|
||
|
console.log('Server running at http://127.0.0.1:' + common.PORT + '/');
|
||
15 years ago
|
|
||
14 years ago
|
var errorTimer = setTimeout(function() {
|
||
12 years ago
|
throw new Error('Timeout was not successful');
|
||
15 years ago
|
}, 2000);
|
||
|
|
||
13 years ago
|
var x = http.get({port: common.PORT, path: '/'});
|
||
|
x.on('error', function() {
|
||
14 years ago
|
clearTimeout(errorTimer);
|
||
|
console.log('HTTP REQUEST COMPLETE (this is good)');
|
||
13 years ago
|
});
|
||
14 years ago
|
x.end();
|
||
|
|
||
15 years ago
|
});
|