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.
30 lines
694 B
30 lines
694 B
'use strict';
|
|
const common = require('../common');
|
|
const http = require('http');
|
|
|
|
const server = http.createServer(common.mustCall(function(req, res) {
|
|
res.writeHead(200);
|
|
res.write('a');
|
|
|
|
req.on('close', common.mustCall(function() {
|
|
console.error('request aborted');
|
|
}));
|
|
res.on('close', common.mustCall(function() {
|
|
console.error('response aborted');
|
|
}));
|
|
}));
|
|
server.listen(0);
|
|
|
|
server.on('listening', function() {
|
|
console.error('make req');
|
|
http.get({
|
|
port: this.address().port
|
|
}, function(res) {
|
|
console.error('got res');
|
|
res.on('data', function(data) {
|
|
console.error('destroy res');
|
|
res.destroy();
|
|
server.close();
|
|
});
|
|
});
|
|
});
|
|
|