url: set conn->transport to default TCP at init time

This commit is contained in:
Daniel Stenberg 2019-08-02 14:28:22 +02:00
parent 0711153b46
commit a9a2b26830
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -1773,6 +1773,7 @@ static struct connectdata *allocate_conn(struct Curl_easy *data)
conn->proxy_ssl_config.verifyhost = data->set.proxy_ssl.primary.verifyhost; conn->proxy_ssl_config.verifyhost = data->set.proxy_ssl.primary.verifyhost;
conn->ip_version = data->set.ipver; conn->ip_version = data->set.ipver;
conn->bits.connect_only = data->set.connect_only; conn->bits.connect_only = data->set.connect_only;
conn->transport = TRNSPRT_TCP; /* most of them are TCP streams */
#if !defined(CURL_DISABLE_HTTP) && defined(USE_NTLM) && \ #if !defined(CURL_DISABLE_HTTP) && defined(USE_NTLM) && \
defined(NTLM_WB_ENABLED) defined(NTLM_WB_ENABLED)
@ -2109,7 +2110,6 @@ static CURLcode setup_connection_internals(struct connectdata *conn)
{ {
const struct Curl_handler * p; const struct Curl_handler * p;
CURLcode result; CURLcode result;
conn->transport = TRNSPRT_TCP; /* most of them are TCP streams */
/* Perform setup complement if some. */ /* Perform setup complement if some. */
p = conn->handler; p = conn->handler;