mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
757 B
40 lines
757 B
'use strict';
|
|
// see https://github.com/joyent/node/issues/3257
|
|
|
|
const common = require('../common');
|
|
const http = require('http');
|
|
|
|
const server = http.createServer(function(req, res) {
|
|
req.resume();
|
|
req.once('end', function() {
|
|
res.writeHead(200);
|
|
res.end();
|
|
server.close();
|
|
});
|
|
});
|
|
|
|
common.refreshTmpDir();
|
|
|
|
server.listen(common.PIPE, function() {
|
|
const req = http.request({
|
|
socketPath: common.PIPE,
|
|
headers: {'Content-Length': '1'},
|
|
method: 'POST',
|
|
path: '/'
|
|
});
|
|
|
|
req.write('.');
|
|
|
|
sched(function() { req.end(); }, 5);
|
|
});
|
|
|
|
// schedule a callback after `ticks` event loop ticks
|
|
function sched(cb, ticks) {
|
|
function fn() {
|
|
if (--ticks)
|
|
setImmediate(fn);
|
|
else
|
|
cb();
|
|
}
|
|
setImmediate(fn);
|
|
}
|
|
|