mirror of
https://github.com/curl/curl.git
synced 2026-08-25 12:03:39 +03:00
vtls: only store TIMER_APPCONNECT for non-proxy connect
Introducing a 'isproxy' argument to the connect function so that it knows wether to store the time stamp or not. Reported-by: Yongkang Huang Fixes #7274 Closes #7274
This commit is contained in:
parent
bfa0309175
commit
a6da296867
9 changed files with 20 additions and 16 deletions
|
|
@ -1588,7 +1588,7 @@ static CURLcode https_connecting(struct Curl_easy *data, bool *done)
|
|||
#endif
|
||||
|
||||
/* perform SSL initialization for this socket */
|
||||
result = Curl_ssl_connect_nonblocking(data, conn, FIRSTSOCKET, done);
|
||||
result = Curl_ssl_connect_nonblocking(data, conn, FALSE, FIRSTSOCKET, done);
|
||||
if(result)
|
||||
connclose(conn, "Failed HTTPS connection");
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue