diff options
author | Daniel Stenberg <daniel@haxx.se> | 2017-06-15 23:57:31 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-06-16 00:02:57 +0200 |
commit | 0d39e5cc95177b0255c32b24b9907dd67bf56252 (patch) | |
tree | 7148fb9c1553cd4b25d3b19a8af857163124cfb9 /lib/http_proxy.h | |
parent | 7e8247c46728c8fd60659502be9106154c6ebc91 (diff) | |
download | curl-0d39e5cc95177b0255c32b24b9907dd67bf56252.tar.gz |
http-proxy: fix build with --disable-proxy or --disable-http
Reported-by: Dan Fandrich
Diffstat (limited to 'lib/http_proxy.h')
-rw-r--r-- | lib/http_proxy.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/http_proxy.h b/lib/http_proxy.h index bd9d6f590..2e50adc8f 100644 --- a/lib/http_proxy.h +++ b/lib/http_proxy.h @@ -35,11 +35,14 @@ CURLcode Curl_proxy_connect(struct connectdata *conn, int sockindex); bool Curl_connect_complete(struct connectdata *conn); bool Curl_connect_ongoing(struct connectdata *conn); -void Curl_connect_free(struct Curl_easy *data); #else #define Curl_proxyCONNECT(x,y,z,w) CURLE_NOT_BUILT_IN #define Curl_proxy_connect(x,y) CURLE_OK +#define Curl_connect_complete(x) CURLE_OK +#define Curl_connect_ongoing(x) FALSE #endif +void Curl_connect_free(struct Curl_easy *data); + #endif /* HEADER_CURL_HTTP_PROXY_H */ |