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.
 
 
 
 
 
 

24 lines
627 B

'use strict';
// Serving up a zero-length buffer should work.
const common = require('../common');
const http = require('http');
const server = http.createServer(function(req, res) {
const buffer = Buffer.alloc(0);
// FIXME: WTF gjslint want this?
res.writeHead(200, { 'Content-Type': 'text/html',
'Content-Length': buffer.length });
res.end(buffer);
});
server.listen(0, common.mustCall(function() {
http.get({ port: this.address().port }, common.mustCall(function(res) {
res.on('data', common.mustNotCall());
res.on('end', function(d) {
server.close();
});
}));
}));