mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
bb29405904
PR-URL: https://github.com/nodejs/node/pull/14162 Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Timothy Gu <timothygu99@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
25 lines
627 B
JavaScript
25 lines
627 B
JavaScript
'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();
|
|
});
|
|
}));
|
|
}));
|