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.
44 lines
933 B
44 lines
933 B
'use strict';
|
|
require('../common');
|
|
const net = require('net');
|
|
const http = require('http');
|
|
const util = require('util');
|
|
|
|
function Agent() {
|
|
http.Agent.call(this);
|
|
}
|
|
util.inherits(Agent, http.Agent);
|
|
|
|
Agent.prototype.createConnection = function() {
|
|
const self = this;
|
|
const socket = new net.Socket();
|
|
|
|
socket.on('error', function() {
|
|
socket.push('HTTP/1.1 200\r\n\r\n');
|
|
});
|
|
|
|
socket.on('newListener', function onNewListener(name) {
|
|
if (name !== 'error')
|
|
return;
|
|
socket.removeListener('newListener', onNewListener);
|
|
|
|
// Let other listeners to be set up too
|
|
process.nextTick(function() {
|
|
self.breakSocket(socket);
|
|
});
|
|
});
|
|
|
|
return socket;
|
|
};
|
|
|
|
Agent.prototype.breakSocket = function breakSocket(socket) {
|
|
socket.emit('error', new Error('Intentional error'));
|
|
};
|
|
|
|
const agent = new Agent();
|
|
|
|
http.request({
|
|
agent: agent
|
|
}).once('error', function() {
|
|
console.log('ignore');
|
|
});
|
|
|