mirror of https://github.com/lukechilds/node.git
Browse Source
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>v1.8.0-commit
Yosuke Furukawa
10 years ago
committed by
Ben Noordhuis
3 changed files with 27 additions and 3 deletions
@ -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…
Reference in new issue