diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-10-25 23:08:54 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-10-25 23:08:54 +0100 |
commit | 96450a1a33ec22cb54b20dbac08ebdf14648582f (patch) | |
tree | c3beaaf86442d1934d74a7902e53d29edb4a9a48 /lib/altsvc.h | |
parent | e2bcdf557b16962af51a34ce493c4375e24895a7 (diff) | |
download | curl-96450a1a33ec22cb54b20dbac08ebdf14648582f.tar.gz |
alt-svc: enable by default
Remove CURLALTSVC_IMMEDIATELY, which was never implemented/supported.
alt-svc support in curl is no longer considered experimental
Closes #5868
Diffstat (limited to 'lib/altsvc.h')
-rw-r--r-- | lib/altsvc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/altsvc.h b/lib/altsvc.h index 1aeb625ab..cc3a00464 100644 --- a/lib/altsvc.h +++ b/lib/altsvc.h @@ -23,7 +23,7 @@ ***************************************************************************/ #include "curl_setup.h" -#if !defined(CURL_DISABLE_HTTP) && defined(USE_ALTSVC) +#if !defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_ALTSVC) #include <curl/curl.h> #include "llist.h" @@ -75,5 +75,5 @@ bool Curl_altsvc_lookup(struct altsvcinfo *asi, /* disabled */ #define Curl_altsvc_save(a,b,c) #define Curl_altsvc_cleanup(x) -#endif /* CURL_DISABLE_HTTP || USE_ALTSVC */ +#endif /* !CURL_DISABLE_HTTP && !CURL_DISABLE_ALTSVC */ #endif /* HEADER_CURL_ALTSVC_H */ |