diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-02-18 16:33:36 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-02-19 22:50:02 +0100 |
commit | b08898fb299ad173167631bd4aa9c95458d76f0e (patch) | |
tree | 5b9bade3cc8ef22fa7d5f65ddd5debf9807b9fb0 /lib/urldata.h | |
parent | e49e5eaa1069a4dfb0ece4a6d833bf51341ef73a (diff) | |
download | curl-b08898fb299ad173167631bd4aa9c95458d76f0e.tar.gz |
connection: never reuse CONNECT_ONLY conections
and make CONNECT_ONLY conections never reuse any existing ones either.
Reported-by: Pavel Löbl
Bug: https://curl.haxx.se/mail/lib-2019-02/0064.html
Closes #3586
Diffstat (limited to 'lib/urldata.h')
-rw-r--r-- | lib/urldata.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/urldata.h b/lib/urldata.h index b194fde23..cdedb8fb1 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -452,6 +452,7 @@ struct ConnectBits { bool proxy_ssl_connected[2]; /* TRUE when SSL initialization for HTTPS proxy is complete */ bool socksproxy_connecting; /* connecting through a socks proxy */ + bool connect_only; }; struct hostname { |