mirror of
https://github.com/nodejs/node.git
synced 2025-05-05 11:29:34 +00:00

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>
21 lines
477 B
JavaScript
21 lines
477 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(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();
|
|
});
|