@@ -35,6 +35,17 @@ const agent_base_1 = require("agent-base");
35
35
const url_1 = require ( "url" ) ;
36
36
const parse_proxy_response_1 = require ( "./parse-proxy-response" ) ;
37
37
const debug = ( 0 , debug_1 . default ) ( 'https-proxy-agent' ) ;
38
+ const setServernameFromNonIpHost = ( options ) => {
39
+ if ( options . servername === undefined &&
40
+ options . host &&
41
+ ! net . isIP ( options . host ) ) {
42
+ return {
43
+ ...options ,
44
+ servername : options . host ,
45
+ } ;
46
+ }
47
+ return options ;
48
+ } ;
38
49
/**
39
50
* The `HttpsProxyAgent` implements an HTTP Agent subclass that connects to
40
51
* the specified "HTTP(s) proxy server" in order to proxy HTTPS requests.
@@ -82,11 +93,7 @@ class HttpsProxyAgent extends agent_base_1.Agent {
82
93
let socket ;
83
94
if ( proxy . protocol === 'https:' ) {
84
95
debug ( 'Creating `tls.Socket`: %o' , this . connectOpts ) ;
85
- const servername = this . connectOpts . servername || this . connectOpts . host ;
86
- socket = tls . connect ( {
87
- ...this . connectOpts ,
88
- servername,
89
- } ) ;
96
+ socket = tls . connect ( setServernameFromNonIpHost ( this . connectOpts ) ) ;
90
97
}
91
98
else {
92
99
debug ( 'Creating `net.Socket`: %o' , this . connectOpts ) ;
@@ -122,11 +129,9 @@ class HttpsProxyAgent extends agent_base_1.Agent {
122
129
// The proxy is connecting to a TLS server, so upgrade
123
130
// this socket connection to a TLS connection.
124
131
debug ( 'Upgrading socket connection to TLS' ) ;
125
- const servername = opts . servername || opts . host ;
126
132
return tls . connect ( {
127
- ...omit ( opts , 'host' , 'path' , 'port' ) ,
133
+ ...omit ( setServernameFromNonIpHost ( opts ) , 'host' , 'path' , 'port' ) ,
128
134
socket,
129
- servername,
130
135
} ) ;
131
136
}
132
137
return socket ;
0 commit comments