diff options
Diffstat (limited to 'Utilities/cmcurl/lib/curl_log.c')
-rw-r--r-- | Utilities/cmcurl/lib/curl_log.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Utilities/cmcurl/lib/curl_log.c b/Utilities/cmcurl/lib/curl_log.c index 2301cff..71024cf 100644 --- a/Utilities/cmcurl/lib/curl_log.c +++ b/Utilities/cmcurl/lib/curl_log.c @@ -38,6 +38,9 @@ #include "connect.h" #include "http2.h" #include "http_proxy.h" +#include "cf-h1-proxy.h" +#include "cf-h2-proxy.h" +#include "cf-haproxy.h" #include "cf-https-connect.h" #include "socks.h" #include "strtok.h" @@ -160,6 +163,10 @@ static struct Curl_cftype *cf_types[] = { #endif #if !defined(CURL_DISABLE_PROXY) #if !defined(CURL_DISABLE_HTTP) + &Curl_cft_h1_proxy, +#ifdef USE_NGHTTP2 + &Curl_cft_h2_proxy, +#endif &Curl_cft_http_proxy, #endif /* !CURL_DISABLE_HTTP */ &Curl_cft_haproxy, |