mirror of
https://github.com/nodejs/node.git
synced 2025-04-30 07:19:19 +00:00

The copyright and license notice is already in the LICENSE file. There is no justifiable reason to also require that it be included in every file, since the individual files are not individually distributed except as part of the entire package.
45 lines
806 B
JavaScript
45 lines
806 B
JavaScript
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
var http = require('http');
|
|
|
|
var port = common.PORT;
|
|
|
|
var server = http.createServer(function(req, res) {
|
|
res.writeHead(200, {'Content-Type': 'text/plain'});
|
|
res.end('OK');
|
|
});
|
|
|
|
var agent = new http.Agent({maxSockets: 1});
|
|
|
|
server.listen(port, function() {
|
|
|
|
for (var i = 0; i < 11; ++i) {
|
|
createRequest().end();
|
|
}
|
|
|
|
function callback(){}
|
|
|
|
var count = 0;
|
|
|
|
function createRequest() {
|
|
var req = http.request({port: port, path: '/', agent: agent}, function(res) {
|
|
|
|
req.clearTimeout(callback);
|
|
|
|
res.on('end', function() {
|
|
count++;
|
|
|
|
if (count == 11) {
|
|
server.close();
|
|
}
|
|
})
|
|
|
|
res.resume();
|
|
});
|
|
|
|
req.setTimeout(1000, callback);
|
|
return req;
|
|
}
|
|
});
|