mirror of
https://github.com/curl/curl.git
synced 2026-07-22 21:37:17 +03:00
connection setup: if HTTP is disabled asking for HTTP proxy is bad
This commit is contained in:
parent
e38a7880e1
commit
93290f69d0
1 changed files with 5 additions and 0 deletions
|
|
@ -4832,9 +4832,14 @@ static CURLcode create_conn(struct SessionHandle *data,
|
|||
if(proxy && !(conn->handler->flags & PROTOPT_BANPROXY)) {
|
||||
if((conn->proxytype == CURLPROXY_HTTP) ||
|
||||
(conn->proxytype == CURLPROXY_HTTP_1_0)) {
|
||||
#ifdef CURL_DISABLE_HTTP
|
||||
/* asking for a HTTP proxy is a bit funny when HTTP is disabled... */
|
||||
return CURLE_UNSUPPORTED_PROTOCOL;
|
||||
#else
|
||||
/* force this connection's protocol to become HTTP */
|
||||
conn->handler = &Curl_handler_http;
|
||||
conn->bits.httpproxy = TRUE;
|
||||
#endif
|
||||
}
|
||||
conn->bits.proxy = TRUE;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue