Home
last modified time | relevance | path

Searched refs:HttpProxyAgent (Results 1 – 4 of 4) sorted by relevance

/third_party/node/deps/npm/node_modules/http-proxy-agent/test/
Dtest.js12 var HttpProxyAgent = require('../'); variable
75 new HttpProxyAgent();
79 var agent = new HttpProxyAgent('http://127.0.0.1:' + proxyPort);
85 var agent = new HttpProxyAgent(opts);
91 var agent = new HttpProxyAgent({ port: proxyPort });
95 var agent = new HttpProxyAgent({ port: proxyPort, protocol: 'http:' });
99 var agent = new HttpProxyAgent({ port: proxyPort, protocol: 'https:' });
103 var agent = new HttpProxyAgent({ port: proxyPort, protocol: 'https' });
117 var agent = new HttpProxyAgent(proxy);
145 var agent = new HttpProxyAgent(proxy);
[all …]
/third_party/node/deps/npm/node_modules/http-proxy-agent/
Dindex.js17 module.exports = HttpProxyAgent;
26 function HttpProxyAgent (opts) { class
27 if (!(this instanceof HttpProxyAgent)) return new HttpProxyAgent(opts);
52 inherits(HttpProxyAgent, Agent);
60 HttpProxyAgent.prototype.callback = function connect (req, opts, fn) {
DREADME.md28 var HttpProxyAgent = require('http-proxy-agent');
39 // create an instance of the `HttpProxyAgent` class with the proxy server information
40 var agent = new HttpProxyAgent(proxy);
/third_party/node/deps/npm/node_modules/make-fetch-happen/
Dagent.js130 let HttpProxyAgent variable
151 if (!HttpProxyAgent) {
152 HttpProxyAgent = require('http-proxy-agent')
155 return new HttpProxyAgent(popts)