curl.h: remnove CURL_VERSION_ESNI. Never supported nor documented

Considered experimental and therefore we can do this.

Closes #5157
This commit is contained in:
Daniel Stenberg 2020-03-28 00:00:27 +01:00
parent 96a617b140
commit 93fafb93db
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2
4 changed files with 0 additions and 7 deletions

View 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

View 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()
*

View 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 */

View 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)