Event: 'connect'
function (response, socket, head) { } 
Emitted each time a server responds to a request with a CONNECT method. If this event isn't being listened for, clients receiving a CONNECT method will have their connections closed. 
A client server pair that show you how to listen for the 'connect' event. 
const http = require('http');
const net = require('net');
const url = require('url');
// Create an HTTP tunneling proxy
var proxy = http.createServer( (req, res) => {
  res.writeHe