SNI support

add SNI support
This commit is contained in:
Mathieu CARBONNEAUX 2016-08-07 19:47:51 +02:00
parent 988322682f
commit 583d6ac96e
4 changed files with 14 additions and 10 deletions

2
http.c
View file

@ -109,7 +109,7 @@ void proxy_protocol(PTSTREAM *pts) {
} else {
if( args_info.verbose_flag )
message( "\nTunneling to %s (destination)\n", args_info.dest_arg );
sprintf( buf, "CONNECT %s HTTP/1.1\r\nHost: %s\r\n", args_info.dest_arg, args_info.host_arg ? args_info.host_arg : args_info.dest_arg );
sprintf( buf, "CONNECT %s HTTP/1.1\r\nHost: %s\r\n", args_info.dest_arg, args_info.host_arg ? args_info.host_arg : args_info.proxyhost_arg );
}
if ( args_info.user_given && args_info.pass_given ) {