]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
curl.h: remnove CURL_VERSION_ESNI. Never supported nor documented
authorDaniel Stenberg <daniel@haxx.se>
Fri, 27 Mar 2020 23:00:27 +0000 (00:00 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Sun, 29 Mar 2020 21:28:49 +0000 (23:28 +0200)
Considered experimental and therefore we can do this.

Closes #5157

docs/libcurl/symbols-in-versions
include/curl/curl.h
lib/version.c
src/tool_help.c

index ee84138393b5aae15199878a31f96322bed6bcf4..c2ed53880b94e1344353050d565ac70abbb9f8f6 100644 (file)
@@ -938,7 +938,6 @@ CURL_VERSION_BROTLI             7.57.0
 CURL_VERSION_CONV               7.15.4
 CURL_VERSION_CURLDEBUG          7.19.6
 CURL_VERSION_DEBUG              7.10.6
-CURL_VERSION_ESNI               7.67.0
 CURL_VERSION_GSSAPI             7.38.0
 CURL_VERSION_GSSNEGOTIATE       7.10.6        7.38.0
 CURL_VERSION_HTTP2              7.33.0
index 716024753fe80ad52a6bb1988b10bfe8501bd2d7..17f07b09f3bf272e2f36b2818c3f70c419dc2794 100644 (file)
@@ -2818,8 +2818,6 @@ typedef struct {
 #define CURL_VERSION_ALTSVC       (1<<24) /* Alt-Svc handling built-in */
 #define CURL_VERSION_HTTP3        (1<<25) /* HTTP3 support built-in */
 
-#define CURL_VERSION_ESNI         (1<<26) /* ESNI support */
-
  /*
  * NAME curl_version_info()
  *
index ed5592a26102bd199efbf0d0c07c29fa0925be6a..ac7730203eabf20a268084173700cfbf30bcf43c 100644 (file)
@@ -386,9 +386,6 @@ static curl_version_info_data version_info = {
 #endif
 #if defined(USE_ALTSVC)
   | CURL_VERSION_ALTSVC
-#endif
-#ifdef USE_ESNI
-  | CURL_VERSION_ESNI
 #endif
   ,
   NULL, /* ssl_version */
index 822f396a3d80f6f0e270a3ea403510ad2d8c0119..5afaf822ec8ab084f52454f0784365e2104ea6f9 100644 (file)
@@ -552,7 +552,6 @@ static const struct feat feats[] = {
   {"MultiSSL",       CURL_VERSION_MULTI_SSL},
   {"PSL",            CURL_VERSION_PSL},
   {"alt-svc",        CURL_VERSION_ALTSVC},
-  {"ESNI",           CURL_VERSION_ESNI},
 };
 
 void tool_help(void)