diff options
author | Marcel Raad <Marcel.Raad@teamviewer.com> | 2017-06-18 15:18:15 +0200 |
---|---|---|
committer | Marcel Raad <Marcel.Raad@teamviewer.com> | 2017-06-18 15:18:15 +0200 |
commit | edafd52be16e4a64f1ae14ea0de722413eedfea2 (patch) | |
tree | 228f3054ffb84cbe52a8bb85ddcd23b6484c4aa1 /lib/http_proxy.h | |
parent | deff7de0eb0e22d2d142b96b9cc84cd8db5d2a48 (diff) | |
download | curl-edafd52be16e4a64f1ae14ea0de722413eedfea2.tar.gz |
http_proxy: fix build with http and proxy
After deff7de0eb0e22d2d142b96b9cc84cd8db5d2a48, the build without
CURL_DISABLE_PROXY and CURL_DISABLE_HTTP was failing because of missing
includes.
Diffstat (limited to 'lib/http_proxy.h')
-rw-r--r-- | lib/http_proxy.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/http_proxy.h b/lib/http_proxy.h index 2e50adc8f..e19fa859a 100644 --- a/lib/http_proxy.h +++ b/lib/http_proxy.h @@ -22,6 +22,9 @@ * ***************************************************************************/ +#include "curl_setup.h" +#include "urldata.h" + #if !defined(CURL_DISABLE_PROXY) && !defined(CURL_DISABLE_HTTP) /* ftp can use this as well */ CURLcode Curl_proxyCONNECT(struct connectdata *conn, |