mirror of https://github.com/lukechilds/node.git
Browse Source
PR-URL: https://github.com/nodejs/node/pull/7376 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Fedor Indutny <fedor@indutny.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>v6
Kyle E. Mitchell
9 years ago
committed by
Luigi Pinca
1 changed files with 18 additions and 0 deletions
@ -0,0 +1,18 @@ |
|||
'use strict'; |
|||
const common = require('../common'); |
|||
const http = require('http'); |
|||
|
|||
const server = http.Server(function(req, res) { |
|||
res.write('Part of my res.'); |
|||
res.destroy(); |
|||
}); |
|||
|
|||
server.listen(0, common.mustCall(function() { |
|||
http.get({ |
|||
port: this.address().port, |
|||
headers: { connection: 'keep-alive' } |
|||
}, common.mustCall(function(res) { |
|||
server.close(); |
|||
res.on('aborted', common.mustCall(function() {})); |
|||
})); |
|||
})); |
Loading…
Reference in new issue