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.
24 lines
606 B
24 lines
606 B
'use strict';
|
|
// Serving up a zero-length buffer should work.
|
|
|
|
const common = require('../common');
|
|
const http = require('http');
|
|
|
|
var server = http.createServer(function(req, res) {
|
|
var 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.fail);
|
|
|
|
res.on('end', function(d) {
|
|
server.close();
|
|
});
|
|
}));
|
|
}));
|
|
|