diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-08-09 11:17:02 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-08-09 12:26:02 +0200 |
commit | 084404b8abccd57f2dff95b1be601f287c1aec57 (patch) | |
tree | 0c02c8e9ccb5a43cc11397f400a0516d5a032c25 /include | |
parent | db061571ef4b7a925da1c189b60c08b39e6b2dbf (diff) | |
download | curl-084404b8abccd57f2dff95b1be601f287c1aec57.tar.gz |
CURLOPT_H3: removed
There's no use for this anymore and it was never in a release.
Closes #4206
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index 7b02846b4..9429355a9 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -920,8 +920,6 @@ typedef enum { #define CURLPROTO_SMBS (1<<27) #define CURLPROTO_ALL (~0) /* enable everything */ -/* bitmask defines for CURLOPT_H3 */ - /* long may be 32 or 64 bits, but we should never depend on anything else but 32 */ #define CURLOPTTYPE_LONG 0 @@ -1924,11 +1922,8 @@ typedef enum { /* maximum age of a connection to consider it for reuse (in seconds) */ CINIT(MAXAGE_CONN, LONG, 288), - /* Bitmask to control HTTP/3 behavior. See CURLH3_* */ - CINIT(H3, LONG, 289), - /* SASL authorisation identity */ - CINIT(SASL_AUTHZID, STRINGPOINT, 290), + CINIT(SASL_AUTHZID, STRINGPOINT, 289), CURLOPT_LASTENTRY /* the last unused */ } CURLoption; |