mirror of
https://github.com/nodejs/node.git
synced 2025-05-05 15:32:15 +00:00

`flushHeaders` should work for header written with `writeHead`. PR-URL: https://github.com/nodejs/io.js/pull/1695 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
21 lines
484 B
JavaScript
21 lines
484 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const http = require('http');
|
|
|
|
const server = http.createServer();
|
|
server.on('request', function(req, res) {
|
|
assert.equal(req.headers['foo'], 'bar');
|
|
res.end('ok');
|
|
server.close();
|
|
});
|
|
server.listen(common.PORT, '127.0.0.1', function() {
|
|
let req = http.request({
|
|
method: 'GET',
|
|
host: '127.0.0.1',
|
|
port: common.PORT,
|
|
});
|
|
req.setHeader('foo', 'bar');
|
|
req.flushHeaders();
|
|
});
|