mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 21:58:48 +02:00
http: add flushHeaders and deprecate flush
PR-URL: https://github.com/iojs/io.js/pull/1156 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Christian Tellnes <christian@tellnes.no> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
This commit is contained in:
parent
68d4bed2fd
commit
b2e00e38dc
3 changed files with 27 additions and 3 deletions
20
test/parallel/test-http-flush-headers.js
Normal file
20
test/parallel/test-http-flush-headers.js
Normal file
|
@ -0,0 +1,20 @@
|
|||
'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(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();
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue