mirror of
https://github.com/nodejs/node.git
synced 2025-05-06 03:45:25 +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.
43 lines
808 B
JavaScript
43 lines
808 B
JavaScript
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
var http = require('http');
|
|
|
|
var port = common.PORT;
|
|
var serverRequests = 0;
|
|
var clientRequests = 0;
|
|
|
|
var server = http.createServer(function(req, res) {
|
|
serverRequests++;
|
|
res.writeHead(200, {'Content-Type': 'text/plain'});
|
|
res.end('OK');
|
|
});
|
|
|
|
server.listen(port, function() {
|
|
function callback(){}
|
|
|
|
var req = http.request({
|
|
port: port,
|
|
path: '/',
|
|
agent: false
|
|
}, function(res) {
|
|
req.clearTimeout(callback);
|
|
|
|
res.on('end', function() {
|
|
clientRequests++;
|
|
server.close();
|
|
})
|
|
|
|
res.resume();
|
|
});
|
|
|
|
// Overflow signed int32
|
|
req.setTimeout(0xffffffff, callback);
|
|
req.end();
|
|
});
|
|
|
|
process.once('exit', function() {
|
|
assert.equal(clientRequests, 1);
|
|
assert.equal(serverRequests, 1);
|
|
});
|