Skip to content

Commit

Permalink
Fix enum
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-jszczerbinski committed Oct 23, 2024
1 parent 59b1774 commit 5c89080
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions deps/curl-8.10.1/include/curl/curl.h
Original file line number Diff line number Diff line change
Expand Up @@ -2220,21 +2220,21 @@ typedef enum {
/* millisecond version */
CURLOPT(CURLOPT_SERVER_RESPONSE_TIMEOUT_MS, CURLOPTTYPE_LONG, 324),

/* Snowflake options. True if enabling ocsp check */
CURLOPT(CURLOPT_SSL_SF_OCSP_CHECK, CURLOPTTYPE_LONG, 325),

/* Snowflake options. True if soft fail is enabled */
CURLOPT(CURLOPT_SSL_SF_OCSP_FAIL_OPEN, CURLOPTTYPE_LONG, 326),

/* Snowflake options. True if OOB telemetry is enabled. Defaults to false */
CURLOPT(CURLOPT_SSL_SF_OOB_ENABLE, CURLOPTTYPE_LONG, 327),

/* set ECH configuration */
CURLOPT(CURLOPT_ECH, CURLOPTTYPE_STRINGPOINT, 325),

/* maximum number of keepalive probes (Linux, *BSD, macOS, etc.) */
CURLOPT(CURLOPT_TCP_KEEPCNT, CURLOPTTYPE_LONG, 326),

/* Snowflake options. True if enabling ocsp check */
CURLOPT(CURLOPT_SSL_SF_OCSP_CHECK, CURLOPTTYPE_LONG, 327),

/* Snowflake options. True if soft fail is enabled */
CURLOPT(CURLOPT_SSL_SF_OCSP_FAIL_OPEN, CURLOPTTYPE_LONG, 328),

/* Snowflake options. True if OOB telemetry is enabled. Defaults to false */
CURLOPT(CURLOPT_SSL_SF_OOB_ENABLE, CURLOPTTYPE_LONG, 329),

CURLOPT_LASTENTRY /* the last unused */
} CURLoption;

Expand Down

0 comments on commit 5c89080

Please sign in to comment.