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.
19 lines
440 B
19 lines
440 B
9 years ago
|
'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() {}));
|
||
|
}));
|
||
|
}));
|